ETH Price: $2,596.30 (-2.24%)

Token

Audibles (AUDIBLES)
 

Overview

Max Total Supply

136 AUDIBLES

Holders

88

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 AUDIBLES
0xe842f92c3c868ff52afc4dcefcf4396710d49da8
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:
Audibles

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : Audibles.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import {ERC721A} from "erc721a/contracts/ERC721A.sol";
import {IERC721A} from "erc721a/contracts/IERC721A.sol";
import {ERC721AQueryable} from "erc721a/contracts/extensions/ERC721AQueryable.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import {ECDSA} from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import {AudiblesKeyManagerIncreaseKeysInterface} from "./AudiblesKeyManagerInterface.sol";

contract Audibles is ERC721A, ERC721AQueryable, Ownable {
    using ECDSA for bytes32;

    event MetadataKey(bytes32 indexed key);
    event TokenInscribed(
        uint256 indexed tokenId,
        bytes32 indexed inscriptionId
    );

    enum GridSize {
        grid8x8,
        grid16x16,
        grid24x24,
        grid32x32,
        grid64x64
    }

    uint16[5] public gridSupply = [444, 1111, 2444, 3444, 9999];
    uint256[5] public gridPrice = [
        0.0088 ether,
        0.0133 ether,
        0.0177 ether,
        0.022 ether,
        0.03 ether
    ];

    bytes32 public freeMintRoot;
    uint32 public mintStartTime;
    uint32 public mintEndTime;
    address public signer;
    address public audiblesKeyManager;
    string private _baseTokenURI;
    string[] private _baseGridURI;
    bool public burnUnlocked;
    bool public metadataUnlocked;

    mapping(GridSize => uint16) public gridCurrentSupply;
    mapping(uint256 => GridSize) public tokenGridSize;
    mapping(address => bool) public freeMintUsed;

    constructor(
        address newAudiblesKeyManager,
        address newSigner,
        uint32 mintStart,
        uint32 mintEnd
    ) ERC721A("Audibles", "AUDIBLES") {
        audiblesKeyManager = newAudiblesKeyManager;
        signer = newSigner;
        mintStartTime = mintStart;
        mintEndTime = mintEnd;
    }

    function freeMint(
        GridSize size,
        bytes32[] calldata proof,
        bytes32 data
    ) external {
        require(
            block.timestamp >= mintStartTime && block.timestamp < mintEndTime,
            "Mint not active"
        );
        require(!freeMintUsed[msg.sender], "Free mint used");
        require(
            MerkleProof.verify(
                proof,
                freeMintRoot,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Cannot use free mint"
        );
        require(
            gridCurrentSupply[size] + 1 <= gridSupply[uint(size)],
            "Grid size sold out"
        );
        uint256 tokenId = _nextTokenId();
        _safeMint(msg.sender, 1);
        tokenGridSize[tokenId] = size;
        freeMintUsed[msg.sender] = true;
        AudiblesKeyManagerIncreaseKeysInterface(audiblesKeyManager)
            .increaseKeys(msg.sender, uint8(size), 1);
        gridCurrentSupply[size]++;
        emit MetadataKey(data);
    }

    function publicMint(
        GridSize size,
        uint8 quantity,
        bytes32 data
    ) external payable {
        require(
            block.timestamp >= mintStartTime && block.timestamp < mintEndTime,
            "Mint not active"
        );
        require(
            gridCurrentSupply[size] + quantity <= gridSupply[uint(size)],
            "Grid size sold out"
        );
        require(quantity <= 10, "Minting too many in transaction");
        require(
            msg.value == gridPrice[uint(size)] * quantity,
            "Insufficient payment"
        );
        uint256 tokenId = _nextTokenId();
        _safeMint(msg.sender, quantity);
        unchecked {
            for (uint8 i = 0; i < quantity; ++i) {
                tokenGridSize[tokenId + i] = size;
            }
        }
        AudiblesKeyManagerIncreaseKeysInterface(audiblesKeyManager)
            .increaseKeys(msg.sender, uint8(size), quantity);
        gridCurrentSupply[size] += quantity;
        emit MetadataKey(data);
    }

    function burnForKeys(uint256 tokenId) external {
        require(burnUnlocked, "Cannot burn");
        _burn(tokenId);
        AudiblesKeyManagerIncreaseKeysInterface(audiblesKeyManager)
            .increaseKeysBurn(msg.sender);
    }

    function inscribeForKeys(
        uint256 tokenId,
        bytes32 inscriptionId,
        bytes calldata signature
    ) external {
        require(burnUnlocked, "Cannot burn");
        bytes32 hash = keccak256(
            abi.encodePacked(
                tokenId,
                inscriptionId,
                keccak256(abi.encodePacked(msg.sender))
            )
        );
        address recovered = hash.toEthSignedMessageHash().recover(signature);
        require(signer == recovered, "Invalid action");
        _burn(tokenId);
        AudiblesKeyManagerIncreaseKeysInterface(audiblesKeyManager)
            .increaseKeysInscribe(msg.sender);
        emit TokenInscribed(tokenId, inscriptionId);
    }

    function setMintStartTime(uint32 start) external onlyOwner {
        mintStartTime = start;
    }

    function setMintEndTime(uint32 end) external onlyOwner {
        mintEndTime = end;
    }

    function setFreeRoot(uint256 root) external onlyOwner {
        freeMintRoot = bytes32(root);
    }

    function toggleBurnUnlocked() external onlyOwner {
        burnUnlocked = !burnUnlocked;
    }

    function toggleMetadataUnlocked() external onlyOwner {
        metadataUnlocked = !metadataUnlocked;
    }

    function setBaseTokenURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setBaseGridURI(string[] memory baseGridURI) external onlyOwner {
        _baseGridURI = baseGridURI;
    }

    function setSigner(address newSigner) external onlyOwner {
        signer = newSigner;
    }

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

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

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

    function tokenURI(
        uint256 tokenId
    ) public view override(ERC721A, IERC721A) returns (string memory) {
        if (metadataUnlocked) {
            return super.tokenURI(tokenId);
        } else {
            if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
            if (_baseGridURI.length != 5) {
                return "";
            }
            return _baseGridURI[uint(tokenGridSize[tokenId])];
        }
    }
}

File 2 of 13 : AudiblesKeyManagerInterface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface AudiblesKeyManagerInterface {
    event PhaseTokenUpgrade(
        uint256 indexed tokenId,
        bytes32 indexed originalData,
        bytes32 indexed newData
    );

    function increaseKeys(
        address minter,
        uint8 gridSize,
        uint8 quantity
    ) external;

    function increaseKeysBurn(address minter) external;

    function increaseKeysInscribe(address minter) external;

    function getPhaseKeys(uint16 quantity) external;

    function phaseOneUpgrade(
        uint256 tokenId,
        bytes32 originalData,
        bytes32 newData
    ) external;

    function phaseTwoUpgrade(
        uint256 tokenId,
        bytes32 originalData,
        bytes32 newData
    ) external;

    function unlockUploadImage() external;

    function batchIncreaseKeys(
        address[] calldata minters,
        uint16[] calldata amounts
    ) external;

    function setKeysPerGrid() external;
}

interface AudiblesKeyManagerIncreaseKeysInterface {
    function increaseKeys(
        address minter,
        uint8 gridSize,
        uint8 quantity
    ) external;

    function increaseKeysBurn(address minter) external;

    function increaseKeysInscribe(address minter) external;
}

File 3 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32")
            mstore(0x1c, hash)
            message := keccak256(0x00, 0x3c)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, "\x19\x01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            data := keccak256(ptr, 0x42)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Data with intended validator, created from a
     * `validator` and `data` according to the version 0 of EIP-191.
     *
     * See {recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x00", validator, data));
    }
}

File 4 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds 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 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 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 from 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) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds 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 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 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 from 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) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                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 5 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

File 6 of 13 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 7 of 13 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 9 of 13 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 10 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 11 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 12 of 13 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 13 of 13 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"newAudiblesKeyManager","type":"address"},{"internalType":"address","name":"newSigner","type":"address"},{"internalType":"uint32","name":"mintStart","type":"uint32"},{"internalType":"uint32","name":"mintEnd","type":"uint32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","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":"bytes32","name":"key","type":"bytes32"}],"name":"MetadataKey","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"inscriptionId","type":"bytes32"}],"name":"TokenInscribed","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"audiblesKeyManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnForKeys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnUnlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum Audibles.GridSize","name":"size","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"data","type":"bytes32"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum Audibles.GridSize","name":"","type":"uint8"}],"name":"gridCurrentSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"gridPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"gridSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes32","name":"inscriptionId","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"inscribeForKeys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataUnlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEndTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintStartTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum Audibles.GridSize","name":"size","type":"uint8"},{"internalType":"uint8","name":"quantity","type":"uint8"},{"internalType":"bytes32","name":"data","type":"bytes32"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"baseGridURI","type":"string[]"}],"name":"setBaseGridURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"root","type":"uint256"}],"name":"setFreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"end","type":"uint32"}],"name":"setMintEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"start","type":"uint32"}],"name":"setMintStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleBurnUnlocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMetadataUnlocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenGridSize","outputs":[{"internalType":"enum Audibles.GridSize","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"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"}]

60806040526040518060a001604052806101bc61ffff16815260200161045761ffff16815260200161098c61ffff168152602001610d7461ffff16815260200161270f61ffff1681525060099060056200005b92919062000386565b506040518060a00160405280661f438daa06000066ffffffffffffff168152602001662f40478f83400066ffffffffffffff168152602001663ee20e6486400066ffffffffffffff168152602001664e28e2290f000066ffffffffffffff168152602001666a94d74f43000066ffffffffffffff16815250600a906005620000e59291906200042a565b50348015620000f357600080fd5b50604051620061f8380380620061f8833981810160405281019062000119919062000544565b6040518060400160405280600881526020017f41756469626c65730000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f41554449424c4553000000000000000000000000000000000000000000000000815250816002908162000196919062000830565b508060039081620001a8919062000830565b50620001b9620002af60201b60201c565b6000819055505050620001e1620001d5620002b860201b60201c565b620002c060201b60201c565b83601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082601060086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601060006101000a81548163ffffffff021916908363ffffffff16021790555080601060046101000a81548163ffffffff021916908363ffffffff1602179055505050505062000917565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b826005600f01601090048101928215620004175791602002820160005b83821115620003e557835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302620003a3565b8015620004155782816101000a81549061ffff0219169055600201602081600101049283019260010302620003e5565b505b5090506200042691906200047a565b5090565b826005810192821562000467579160200282015b8281111562000466578251829066ffffffffffffff169055916020019190600101906200043e565b5b5090506200047691906200047a565b5090565b5b80821115620004955760008160009055506001016200047b565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004cb826200049e565b9050919050565b620004dd81620004be565b8114620004e957600080fd5b50565b600081519050620004fd81620004d2565b92915050565b600063ffffffff82169050919050565b6200051e8162000503565b81146200052a57600080fd5b50565b6000815190506200053e8162000513565b92915050565b6000806000806080858703121562000561576200056062000499565b5b60006200057187828801620004ec565b94505060206200058487828801620004ec565b935050604062000597878288016200052d565b9250506060620005aa878288016200052d565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200063857607f821691505b6020821081036200064e576200064d620005f0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006b87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000679565b620006c4868362000679565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007116200070b6200070584620006dc565b620006e6565b620006dc565b9050919050565b6000819050919050565b6200072d83620006f0565b620007456200073c8262000718565b84845462000686565b825550505050565b600090565b6200075c6200074d565b6200076981848462000722565b505050565b5b8181101562000791576200078560008262000752565b6001810190506200076f565b5050565b601f821115620007e057620007aa8162000654565b620007b58462000669565b81016020851015620007c5578190505b620007dd620007d48562000669565b8301826200076e565b50505b505050565b600082821c905092915050565b60006200080560001984600802620007e5565b1980831691505092915050565b6000620008208383620007f2565b9150826002028217905092915050565b6200083b82620005b6565b67ffffffffffffffff811115620008575762000856620005c1565b5b6200086382546200061f565b6200087082828562000795565b600060209050601f831160018114620008a8576000841562000893578287015190505b6200089f858262000812565b8655506200090f565b601f198416620008b88662000654565b60005b82811015620008e257848901518255600182019150602085019450602081019050620008bb565b86831015620009025784890151620008fe601f891682620007f2565b8355505b6001600288020188555050505b505050505050565b6158d180620009276000396000f3fe60806040526004361061027d5760003560e01c8063715018a61161014f578063ab231f9a116100c1578063d6c6a4cc1161007a578063d6c6a4cc14610977578063d78d8e89146109a0578063e28acaca146109dd578063e985e9c514610a08578063f2fde38b14610a45578063f8c11b3a14610a6e5761027d565b8063ab231f9a14610864578063b88d4fde146108a1578063c23dc68f146108bd578063c4c00391146108fa578063c87b56dd14610923578063d0427b33146109605761027d565b8063931e2e4911610113578063931e2e491461075457806395d89b411461077f57806399a2557a146107aa5780639f6d2164146107e7578063a22cb46514610810578063a886c377146108395761027d565b8063715018a614610681578063717a002b146106985780638462151c146106c35780638da5cb5b146107005780638f53b96d1461072b5761027d565b8063333ecc92116101f35780636154e7ef116101ac5780636154e7ef1461054f5780636352211e1461058c5780636a825db4146105c95780636c19e783146105f25780636f58ec481461061b57806370a08231146106445761027d565b8063333ecc92146104625780633ccfd60b1461047957806342842e0e14610490578063456cc814146104ac5780634e3a7c08146104e95780635bbb2177146105125761027d565b806318160ddd1161024557806318160ddd1461036e5780631def2a3414610399578063238ac933146103d657806323b872dd14610401578063288b68021461041d57806330176e13146104395761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b31461032757806310be9bbd14610343575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613af0565b610a99565b6040516102b69190613b38565b60405180910390f35b3480156102cb57600080fd5b506102d4610b2b565b6040516102e19190613be3565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613c3b565b610bbd565b60405161031e9190613ca9565b60405180910390f35b610341600480360381019061033c9190613cf0565b610c3c565b005b34801561034f57600080fd5b50610358610d80565b6040516103659190613b38565b60405180910390f35b34801561037a57600080fd5b50610383610d93565b6040516103909190613d3f565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190613c3b565b610daa565b6040516103cd9190613dd1565b60405180910390f35b3480156103e257600080fd5b506103eb610dca565b6040516103f89190613ca9565b60405180910390f35b61041b60048036038101906104169190613dec565b610df0565b005b61043760048036038101906104329190613ed3565b611112565b005b34801561044557600080fd5b50610460600480360381019061045b9190613f8b565b6114e8565b005b34801561046e57600080fd5b50610477611506565b005b34801561048557600080fd5b5061048e61153a565b005b6104aa60048036038101906104a59190613dec565b61158b565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613fd8565b6115ab565b6040516104e09190613b38565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190613c3b565b6115cb565b005b34801561051e57600080fd5b506105396004803603810190610534919061405b565b6116b3565b604051610546919061420b565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190613c3b565b611776565b6040516105839190613d3f565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190613c3b565b611791565b6040516105c09190613ca9565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190614283565b6117a3565b005b3480156105fe57600080fd5b5061061960048036038101906106149190613fd8565b611c2e565b005b34801561062757600080fd5b50610642600480360381019061063d9190614333565b611c7a565b005b34801561065057600080fd5b5061066b60048036038101906106669190613fd8565b611ca6565b6040516106789190613d3f565b60405180910390f35b34801561068d57600080fd5b50610696611d5e565b005b3480156106a457600080fd5b506106ad611d72565b6040516106ba919061436f565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190613fd8565b611d88565b6040516106f79190614448565b60405180910390f35b34801561070c57600080fd5b50610715611ecb565b6040516107229190613ca9565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d9190613c3b565b611ef5565b005b34801561076057600080fd5b50610769611f0a565b604051610776919061436f565b60405180910390f35b34801561078b57600080fd5b50610794611f20565b6040516107a19190613be3565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc919061446a565b611fb2565b6040516107de9190614448565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190614513565b6121be565b005b34801561081c57600080fd5b50610837600480360381019061083291906145b3565b612421565b005b34801561084557600080fd5b5061084e61252c565b60405161085b9190614602565b60405180910390f35b34801561087057600080fd5b5061088b6004803603810190610886919061461d565b612532565b6040516108989190614667565b60405180910390f35b6108bb60048036038101906108b691906147b2565b612553565b005b3480156108c957600080fd5b506108e460048036038101906108df9190613c3b565b6125c6565b6040516108f1919061488a565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190614a27565b612630565b005b34801561092f57600080fd5b5061094a60048036038101906109459190613c3b565b612652565b6040516109579190613be3565b60405180910390f35b34801561096c57600080fd5b506109756127bd565b005b34801561098357600080fd5b5061099e60048036038101906109999190614333565b6127f1565b005b3480156109ac57600080fd5b506109c760048036038101906109c29190613c3b565b61281d565b6040516109d49190614667565b60405180910390f35b3480156109e957600080fd5b506109f261284b565b6040516109ff9190613ca9565b60405180910390f35b348015610a1457600080fd5b50610a2f6004803603810190610a2a9190614a70565b612871565b604051610a3c9190613b38565b60405180910390f35b348015610a5157600080fd5b50610a6c6004803603810190610a679190613fd8565b612905565b005b348015610a7a57600080fd5b50610a83612988565b604051610a909190613b38565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b245750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b3a90614adf565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6690614adf565b8015610bb35780601f10610b8857610100808354040283529160200191610bb3565b820191906000526020600020905b815481529060010190602001808311610b9657829003601f168201915b5050505050905090565b6000610bc88261299b565b610bfe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c4782611791565b90508073ffffffffffffffffffffffffffffffffffffffff16610c686129fa565b73ffffffffffffffffffffffffffffffffffffffff1614610ccb57610c9481610c8f6129fa565b612871565b610cca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601460019054906101000a900460ff1681565b6000610d9d612a02565b6001546000540303905090565b60166020528060005260406000206000915054906101000a900460ff1681565b601060089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610dfb82612a0b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e62576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e6e84612ad7565b91509150610e848187610e7f6129fa565b612afe565b610ed057610e9986610e946129fa565b612871565b610ecf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610f36576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f438686866001612b42565b8015610f4e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061101c85610ff8888887612b48565b7c020000000000000000000000000000000000000000000000000000000017612b70565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036110a257600060018501905060006004600083815260200190815260200160002054036110a057600054811461109f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461110a8686866001612b9b565b505050505050565b601060009054906101000a900463ffffffff1663ffffffff1642101580156111515750601060049054906101000a900463ffffffff1663ffffffff1642105b611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790614b5c565b60405180910390fd5b60098360048111156111a5576111a4613d5a565b5b600581106111b6576111b5614b7c565b5b601091828204019190066002029054906101000a900461ffff1661ffff168260ff16601560008660048111156111ef576111ee613d5a565b5b600481111561120157611200613d5a565b5b815260200190815260200160002060009054906101000a900461ffff166112289190614bda565b61ffff16111561126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490614c5c565b60405180910390fd5b600a8260ff1611156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90614cc8565b60405180910390fd5b8160ff16600a8460048111156112cd576112cc613d5a565b5b600581106112de576112dd614b7c565b5b01546112ea9190614ce8565b341461132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290614d76565b60405180910390fd5b6000611335612ba1565b9050611344338460ff16612baa565b60005b8360ff168160ff1610156113a05784601660008360ff168501815260200190815260200160002060006101000a81548160ff021916908360048111156113905761138f613d5a565b5b0217905550806001019050611347565b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ec195d62338660048111156113f3576113f2613d5a565b5b866040518463ffffffff1660e01b815260040161141293929190614da5565b600060405180830381600087803b15801561142c57600080fd5b505af1158015611440573d6000803e3d6000fd5b505050508260ff166015600086600481111561145f5761145e613d5a565b5b600481111561147157611470613d5a565b5b815260200190815260200160002060008282829054906101000a900461ffff1661149b9190614bda565b92506101000a81548161ffff021916908361ffff160217905550817f473355fca9874d7521d93ab03ab4522ab4981210336905682cac9c40f562db8b60405160405180910390a250505050565b6114f0612bc8565b818160129182611501929190614f93565b505050565b61150e612bc8565b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b611542612bc8565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611588573d6000803e3d6000fd5b50565b6115a683838360405180602001604052806000815250612553565b505050565b60176020528060005260406000206000915054906101000a900460ff1681565b601460009054906101000a900460ff1661161a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611611906150af565b60405180910390fd5b61162381612c46565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166348fe5405336040518263ffffffff1660e01b815260040161167e9190613ca9565b600060405180830381600087803b15801561169857600080fd5b505af11580156116ac573d6000803e3d6000fd5b5050505050565b6060600083839050905060008167ffffffffffffffff8111156116d9576116d8614687565b5b60405190808252806020026020018201604052801561171257816020015b6116ff61395b565b8152602001906001900390816116f75790505b50905060005b82811461176a5761174186868381811061173557611734614b7c565b5b905060200201356125c6565b82828151811061175457611753614b7c565b5b6020026020010181905250806001019050611718565b50809250505092915050565b600a816005811061178657600080fd5b016000915090505481565b600061179c82612a0b565b9050919050565b601060009054906101000a900463ffffffff1663ffffffff1642101580156117e25750601060049054906101000a900463ffffffff1663ffffffff1642105b611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890614b5c565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a59061511b565b60405180910390fd5b611922838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f54336040516020016119079190615183565b60405160208183030381529060405280519060200120612c54565b611961576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611958906151ea565b60405180910390fd5b600984600481111561197657611975613d5a565b5b6005811061198757611986614b7c565b5b601091828204019190066002029054906101000a900461ffff1661ffff166001601560008760048111156119be576119bd613d5a565b5b60048111156119d0576119cf613d5a565b5b815260200190815260200160002060009054906101000a900461ffff166119f79190614bda565b61ffff161115611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3390614c5c565b60405180910390fd5b6000611a46612ba1565b9050611a53336001612baa565b846016600083815260200190815260200160002060006101000a81548160ff02191690836004811115611a8957611a88613d5a565b5b02179055506001601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ec195d6233876004811115611b3857611b37613d5a565b5b60016040518463ffffffff1660e01b8152600401611b5893929190615245565b600060405180830381600087803b158015611b7257600080fd5b505af1158015611b86573d6000803e3d6000fd5b5050505060156000866004811115611ba157611ba0613d5a565b5b6004811115611bb357611bb2613d5a565b5b8152602001908152602001600020600081819054906101000a900461ffff1680929190611bdf9061527c565b91906101000a81548161ffff021916908361ffff16021790555050817f473355fca9874d7521d93ab03ab4522ab4981210336905682cac9c40f562db8b60405160405180910390a25050505050565b611c36612bc8565b80601060086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c82612bc8565b80601060006101000a81548163ffffffff021916908363ffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d0d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611d66612bc8565b611d706000612c6b565b565b601060049054906101000a900463ffffffff1681565b60606000806000611d9885611ca6565b905060008167ffffffffffffffff811115611db657611db5614687565b5b604051908082528060200260200182016040528015611de45781602001602082028036833780820191505090505b509050611def61395b565b6000611df9612a02565b90505b838614611ebd57611e0c81612d31565b91508160400151611eb257600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e5757816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611eb15780838780600101985081518110611ea457611ea3614b7c565b5b6020026020010181815250505b5b806001019050611dfc565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611efd612bc8565b8060001b600f8190555050565b601060009054906101000a900463ffffffff1681565b606060038054611f2f90614adf565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5b90614adf565b8015611fa85780601f10611f7d57610100808354040283529160200191611fa8565b820191906000526020600020905b815481529060010190602001808311611f8b57829003601f168201915b5050505050905090565b6060818310611fed576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611ff8612ba1565b9050612002612a02565b85101561201457612011612a02565b94505b80841115612020578093505b600061202b87611ca6565b90508486101561204e576000868603905081811015612048578091505b50612053565b600090505b60008167ffffffffffffffff81111561206f5761206e614687565b5b60405190808252806020026020018201604052801561209d5781602001602082028036833780820191505090505b509050600082036120b457809450505050506121b7565b60006120bf886125c6565b9050600081604001516120d457816000015190505b60008990505b8881141580156120ea5750848714155b156121a9576120f881612d31565b9250826040015161219e57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461214357826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361219d57808488806001019950815181106121905761218f614b7c565b5b6020026020010181815250505b5b8060010190506120da565b508583528296505050505050505b9392505050565b601460009054906101000a900460ff1661220d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612204906150af565b60405180910390fd5b60008484336040516020016122229190615183565b6040516020818303038152906040528051906020012060405160200161224a939291906152e8565b60405160208183030381529060405280519060200120905060006122c384848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506122b584612d5c565b612d9290919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff16601060089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c90615371565b60405180910390fd5b61235e86612c46565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166382b59931336040518263ffffffff1660e01b81526004016123b99190613ca9565b600060405180830381600087803b1580156123d357600080fd5b505af11580156123e7573d6000803e3d6000fd5b5050505084867fce3be0da73512a5e288d3ee8276d2dac36afe66de859b3c0e3861139b2c6e9c960405160405180910390a3505050505050565b806007600061242e6129fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166124db6129fa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125209190613b38565b60405180910390a35050565b600f5481565b60156020528060005260406000206000915054906101000a900461ffff1681565b61255e848484610df0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125c05761258984848484612db9565b6125bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6125ce61395b565b6125d661395b565b6125de612a02565b8310806125f257506125ee612ba1565b8310155b15612600578091505061262b565b61260983612d31565b905080604001511561261e578091505061262b565b61262783612f09565b9150505b919050565b612638612bc8565b806013908051906020019061264e9291906139aa565b5050565b6060601460019054906101000a900460ff16156126795761267282612f29565b90506127b8565b6126828261299b565b6126b8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005601380549050146126dc576040518060200160405280600081525090506127b8565b60136016600084815260200190815260200160002060009054906101000a900460ff16600481111561271157612710613d5a565b5b8154811061272257612721614b7c565b5b90600052602060002001805461273790614adf565b80601f016020809104026020016040519081016040528092919081815260200182805461276390614adf565b80156127b05780601f10612785576101008083540402835291602001916127b0565b820191906000526020600020905b81548152906001019060200180831161279357829003601f168201915b505050505090505b919050565b6127c5612bc8565b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b6127f9612bc8565b80601060046101000a81548163ffffffff021916908363ffffffff16021790555050565b6009816005811061282d57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61290d612bc8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361297c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297390615403565b60405180910390fd5b61298581612c6b565b50565b601460009054906101000a900460ff1681565b6000816129a6612a02565b111580156129b5575060005482105b80156129f3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080612a1a612a02565b11612aa057600054811015612a9f5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612a9d575b60008103612a93576004600083600190039350838152602001908152602001600020549050612a69565b8092505050612ad2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612b5f868684612fc7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008054905090565b612bc4828260405180602001604052806000815250612fd0565b5050565b612bd061306d565b73ffffffffffffffffffffffffffffffffffffffff16612bee611ecb565b73ffffffffffffffffffffffffffffffffffffffff1614612c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3b9061546f565b60405180910390fd5b565b612c51816000613075565b50565b600082612c6185846132c7565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d3961395b565b612d55600460008481526020019081526020016000205461331d565b9050919050565b60007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005281601c52603c6000209050919050565b6000806000612da185856133d3565b91509150612dae81613424565b819250505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ddf6129fa565b8786866040518563ffffffff1660e01b8152600401612e0194939291906154e4565b6020604051808303816000875af1925050508015612e3d57506040513d601f19601f82011682018060405250810190612e3a9190615545565b60015b612eb6573d8060008114612e6d576040519150601f19603f3d011682016040523d82523d6000602084013e612e72565b606091505b506000815103612eae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612f1161395b565b612f22612f1d83612a0b565b61331d565b9050919050565b6060612f348261299b565b612f6a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612f7461358a565b90506000815103612f945760405180602001604052806000815250612fbf565b80612f9e8461361c565b604051602001612faf9291906155ae565b6040516020818303038152906040525b915050919050565b60009392505050565b612fda838361366c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461306857600080549050600083820390505b61301a6000868380600101945086612db9565b613050576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061300757816000541461306557600080fd5b50505b505050565b600033905090565b600061308083612a0b565b9050600081905060008061309386612ad7565b9150915084156130fc576130af81846130aa6129fa565b612afe565b6130fb576130c4836130bf6129fa565b612871565b6130fa576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61310a836000886001612b42565b801561311557600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506131bd8361317a85600088612b48565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612b70565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036132435760006001870190506000600460008381526020019081526020016000205403613241576000548114613240578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132ad836000886001612b9b565b600160008154809291906001019190505550505050505050565b60008082905060005b8451811015613312576132fd828683815181106132f0576132ef614b7c565b5b6020026020010151613827565b9150808061330a906155d2565b9150506132d0565b508091505092915050565b61332561395b565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008060418351036134145760008060006020860151925060408601519150606086015160001a905061340887828585613852565b9450945050505061341d565b60006002915091505b9250929050565b6000600481111561343857613437613d5a565b5b81600481111561344b5761344a613d5a565b5b0315613587576001600481111561346557613464613d5a565b5b81600481111561347857613477613d5a565b5b036134b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134af90615666565b60405180910390fd5b600260048111156134cc576134cb613d5a565b5b8160048111156134df576134de613d5a565b5b0361351f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613516906156d2565b60405180910390fd5b6003600481111561353357613532613d5a565b5b81600481111561354657613545613d5a565b5b03613586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357d90615764565b60405180910390fd5b5b50565b60606012805461359990614adf565b80601f01602080910402602001604051908101604052809291908181526020018280546135c590614adf565b80156136125780601f106135e757610100808354040283529160200191613612565b820191906000526020600020905b8154815290600101906020018083116135f557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561365757600184039350600a81066030018453600a8104905080613635575b50828103602084039350808452505050919050565b600080549050600082036136ac576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6136b96000848385612b42565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613730836137216000866000612b48565b61372a85613934565b17612b70565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146137d157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613796565b506000820361380c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506138226000848385612b9b565b505050565b600081831061383f5761383a8284613944565b61384a565b6138498383613944565b5b905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561388d57600060039150915061392b565b6000600187878787604051600081526020016040526040516138b29493929190615784565b6020604051602081039080840390855afa1580156138d4573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036139225760006001925092505061392b565b80600092509250505b94509492505050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b8280548282559060005260206000209081019282156139f2579160200282015b828111156139f15782518290816139e191906157c9565b50916020019190600101906139ca565b5b5090506139ff9190613a03565b5090565b5b80821115613a235760008181613a1a9190613a27565b50600101613a04565b5090565b508054613a3390614adf565b6000825580601f10613a455750613a64565b601f016020900490600052602060002090810190613a639190613a67565b5b50565b5b80821115613a80576000816000905550600101613a68565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613acd81613a98565b8114613ad857600080fd5b50565b600081359050613aea81613ac4565b92915050565b600060208284031215613b0657613b05613a8e565b5b6000613b1484828501613adb565b91505092915050565b60008115159050919050565b613b3281613b1d565b82525050565b6000602082019050613b4d6000830184613b29565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b8d578082015181840152602081019050613b72565b60008484015250505050565b6000601f19601f8301169050919050565b6000613bb582613b53565b613bbf8185613b5e565b9350613bcf818560208601613b6f565b613bd881613b99565b840191505092915050565b60006020820190508181036000830152613bfd8184613baa565b905092915050565b6000819050919050565b613c1881613c05565b8114613c2357600080fd5b50565b600081359050613c3581613c0f565b92915050565b600060208284031215613c5157613c50613a8e565b5b6000613c5f84828501613c26565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c9382613c68565b9050919050565b613ca381613c88565b82525050565b6000602082019050613cbe6000830184613c9a565b92915050565b613ccd81613c88565b8114613cd857600080fd5b50565b600081359050613cea81613cc4565b92915050565b60008060408385031215613d0757613d06613a8e565b5b6000613d1585828601613cdb565b9250506020613d2685828601613c26565b9150509250929050565b613d3981613c05565b82525050565b6000602082019050613d546000830184613d30565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110613d9a57613d99613d5a565b5b50565b6000819050613dab82613d89565b919050565b6000613dbb82613d9d565b9050919050565b613dcb81613db0565b82525050565b6000602082019050613de66000830184613dc2565b92915050565b600080600060608486031215613e0557613e04613a8e565b5b6000613e1386828701613cdb565b9350506020613e2486828701613cdb565b9250506040613e3586828701613c26565b9150509250925092565b60058110613e4c57600080fd5b50565b600081359050613e5e81613e3f565b92915050565b600060ff82169050919050565b613e7a81613e64565b8114613e8557600080fd5b50565b600081359050613e9781613e71565b92915050565b6000819050919050565b613eb081613e9d565b8114613ebb57600080fd5b50565b600081359050613ecd81613ea7565b92915050565b600080600060608486031215613eec57613eeb613a8e565b5b6000613efa86828701613e4f565b9350506020613f0b86828701613e88565b9250506040613f1c86828701613ebe565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112613f4b57613f4a613f26565b5b8235905067ffffffffffffffff811115613f6857613f67613f2b565b5b602083019150836001820283011115613f8457613f83613f30565b5b9250929050565b60008060208385031215613fa257613fa1613a8e565b5b600083013567ffffffffffffffff811115613fc057613fbf613a93565b5b613fcc85828601613f35565b92509250509250929050565b600060208284031215613fee57613fed613a8e565b5b6000613ffc84828501613cdb565b91505092915050565b60008083601f84011261401b5761401a613f26565b5b8235905067ffffffffffffffff81111561403857614037613f2b565b5b60208301915083602082028301111561405457614053613f30565b5b9250929050565b6000806020838503121561407257614071613a8e565b5b600083013567ffffffffffffffff8111156140905761408f613a93565b5b61409c85828601614005565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6140dd81613c88565b82525050565b600067ffffffffffffffff82169050919050565b614100816140e3565b82525050565b61410f81613b1d565b82525050565b600062ffffff82169050919050565b61412d81614115565b82525050565b60808201600082015161414960008501826140d4565b50602082015161415c60208501826140f7565b50604082015161416f6040850182614106565b5060608201516141826060850182614124565b50505050565b60006141948383614133565b60808301905092915050565b6000602082019050919050565b60006141b8826140a8565b6141c281856140b3565b93506141cd836140c4565b8060005b838110156141fe5781516141e58882614188565b97506141f0836141a0565b9250506001810190506141d1565b5085935050505092915050565b6000602082019050818103600083015261422581846141ad565b905092915050565b60008083601f84011261424357614242613f26565b5b8235905067ffffffffffffffff8111156142605761425f613f2b565b5b60208301915083602082028301111561427c5761427b613f30565b5b9250929050565b6000806000806060858703121561429d5761429c613a8e565b5b60006142ab87828801613e4f565b945050602085013567ffffffffffffffff8111156142cc576142cb613a93565b5b6142d88782880161422d565b935093505060406142eb87828801613ebe565b91505092959194509250565b600063ffffffff82169050919050565b614310816142f7565b811461431b57600080fd5b50565b60008135905061432d81614307565b92915050565b60006020828403121561434957614348613a8e565b5b60006143578482850161431e565b91505092915050565b614369816142f7565b82525050565b60006020820190506143846000830184614360565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6143bf81613c05565b82525050565b60006143d183836143b6565b60208301905092915050565b6000602082019050919050565b60006143f58261438a565b6143ff8185614395565b935061440a836143a6565b8060005b8381101561443b57815161442288826143c5565b975061442d836143dd565b92505060018101905061440e565b5085935050505092915050565b6000602082019050818103600083015261446281846143ea565b905092915050565b60008060006060848603121561448357614482613a8e565b5b600061449186828701613cdb565b93505060206144a286828701613c26565b92505060406144b386828701613c26565b9150509250925092565b60008083601f8401126144d3576144d2613f26565b5b8235905067ffffffffffffffff8111156144f0576144ef613f2b565b5b60208301915083600182028301111561450c5761450b613f30565b5b9250929050565b6000806000806060858703121561452d5761452c613a8e565b5b600061453b87828801613c26565b945050602061454c87828801613ebe565b935050604085013567ffffffffffffffff81111561456d5761456c613a93565b5b614579878288016144bd565b925092505092959194509250565b61459081613b1d565b811461459b57600080fd5b50565b6000813590506145ad81614587565b92915050565b600080604083850312156145ca576145c9613a8e565b5b60006145d885828601613cdb565b92505060206145e98582860161459e565b9150509250929050565b6145fc81613e9d565b82525050565b600060208201905061461760008301846145f3565b92915050565b60006020828403121561463357614632613a8e565b5b600061464184828501613e4f565b91505092915050565b600061ffff82169050919050565b6146618161464a565b82525050565b600060208201905061467c6000830184614658565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6146bf82613b99565b810181811067ffffffffffffffff821117156146de576146dd614687565b5b80604052505050565b60006146f1613a84565b90506146fd82826146b6565b919050565b600067ffffffffffffffff82111561471d5761471c614687565b5b61472682613b99565b9050602081019050919050565b82818337600083830152505050565b600061475561475084614702565b6146e7565b90508281526020810184848401111561477157614770614682565b5b61477c848285614733565b509392505050565b600082601f83011261479957614798613f26565b5b81356147a9848260208601614742565b91505092915050565b600080600080608085870312156147cc576147cb613a8e565b5b60006147da87828801613cdb565b94505060206147eb87828801613cdb565b93505060406147fc87828801613c26565b925050606085013567ffffffffffffffff81111561481d5761481c613a93565b5b61482987828801614784565b91505092959194509250565b60808201600082015161484b60008501826140d4565b50602082015161485e60208501826140f7565b5060408201516148716040850182614106565b5060608201516148846060850182614124565b50505050565b600060808201905061489f6000830184614835565b92915050565b600067ffffffffffffffff8211156148c0576148bf614687565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156148ec576148eb614687565b5b6148f582613b99565b9050602081019050919050565b6000614915614910846148d1565b6146e7565b90508281526020810184848401111561493157614930614682565b5b61493c848285614733565b509392505050565b600082601f83011261495957614958613f26565b5b8135614969848260208601614902565b91505092915050565b6000614985614980846148a5565b6146e7565b905080838252602082019050602084028301858111156149a8576149a7613f30565b5b835b818110156149ef57803567ffffffffffffffff8111156149cd576149cc613f26565b5b8086016149da8982614944565b855260208501945050506020810190506149aa565b5050509392505050565b600082601f830112614a0e57614a0d613f26565b5b8135614a1e848260208601614972565b91505092915050565b600060208284031215614a3d57614a3c613a8e565b5b600082013567ffffffffffffffff811115614a5b57614a5a613a93565b5b614a67848285016149f9565b91505092915050565b60008060408385031215614a8757614a86613a8e565b5b6000614a9585828601613cdb565b9250506020614aa685828601613cdb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614af757607f821691505b602082108103614b0a57614b09614ab0565b5b50919050565b7f4d696e74206e6f74206163746976650000000000000000000000000000000000600082015250565b6000614b46600f83613b5e565b9150614b5182614b10565b602082019050919050565b60006020820190508181036000830152614b7581614b39565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614be58261464a565b9150614bf08361464a565b9250828201905061ffff811115614c0a57614c09614bab565b5b92915050565b7f477269642073697a6520736f6c64206f75740000000000000000000000000000600082015250565b6000614c46601283613b5e565b9150614c5182614c10565b602082019050919050565b60006020820190508181036000830152614c7581614c39565b9050919050565b7f4d696e74696e6720746f6f206d616e7920696e207472616e73616374696f6e00600082015250565b6000614cb2601f83613b5e565b9150614cbd82614c7c565b602082019050919050565b60006020820190508181036000830152614ce181614ca5565b9050919050565b6000614cf382613c05565b9150614cfe83613c05565b9250828202614d0c81613c05565b91508282048414831517614d2357614d22614bab565b5b5092915050565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b6000614d60601483613b5e565b9150614d6b82614d2a565b602082019050919050565b60006020820190508181036000830152614d8f81614d53565b9050919050565b614d9f81613e64565b82525050565b6000606082019050614dba6000830186613c9a565b614dc76020830185614d96565b614dd46040830184614d96565b949350505050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614e497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614e0c565b614e538683614e0c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614e90614e8b614e8684613c05565b614e6b565b613c05565b9050919050565b6000819050919050565b614eaa83614e75565b614ebe614eb682614e97565b848454614e19565b825550505050565b600090565b614ed3614ec6565b614ede818484614ea1565b505050565b5b81811015614f0257614ef7600082614ecb565b600181019050614ee4565b5050565b601f821115614f4757614f1881614de7565b614f2184614dfc565b81016020851015614f30578190505b614f44614f3c85614dfc565b830182614ee3565b50505b505050565b600082821c905092915050565b6000614f6a60001984600802614f4c565b1980831691505092915050565b6000614f838383614f59565b9150826002028217905092915050565b614f9d8383614ddc565b67ffffffffffffffff811115614fb657614fb5614687565b5b614fc08254614adf565b614fcb828285614f06565b6000601f831160018114614ffa5760008415614fe8578287013590505b614ff28582614f77565b86555061505a565b601f19841661500886614de7565b60005b828110156150305784890135825560018201915060208501945060208101905061500b565b8683101561504d5784890135615049601f891682614f59565b8355505b6001600288020188555050505b50505050505050565b7f43616e6e6f74206275726e000000000000000000000000000000000000000000600082015250565b6000615099600b83613b5e565b91506150a482615063565b602082019050919050565b600060208201905081810360008301526150c88161508c565b9050919050565b7f46726565206d696e742075736564000000000000000000000000000000000000600082015250565b6000615105600e83613b5e565b9150615110826150cf565b602082019050919050565b60006020820190508181036000830152615134816150f8565b9050919050565b60008160601b9050919050565b60006151538261513b565b9050919050565b600061516582615148565b9050919050565b61517d61517882613c88565b61515a565b82525050565b600061518f828461516c565b60148201915081905092915050565b7f43616e6e6f74207573652066726565206d696e74000000000000000000000000600082015250565b60006151d4601483613b5e565b91506151df8261519e565b602082019050919050565b60006020820190508181036000830152615203816151c7565b9050919050565b6000819050919050565b600061522f61522a6152258461520a565b614e6b565b613e64565b9050919050565b61523f81615214565b82525050565b600060608201905061525a6000830186613c9a565b6152676020830185614d96565b6152746040830184615236565b949350505050565b60006152878261464a565b915061ffff820361529b5761529a614bab565b5b600182019050919050565b6000819050919050565b6152c16152bc82613c05565b6152a6565b82525050565b6000819050919050565b6152e26152dd82613e9d565b6152c7565b82525050565b60006152f482866152b0565b60208201915061530482856152d1565b60208201915061531482846152d1565b602082019150819050949350505050565b7f496e76616c696420616374696f6e000000000000000000000000000000000000600082015250565b600061535b600e83613b5e565b915061536682615325565b602082019050919050565b6000602082019050818103600083015261538a8161534e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153ed602683613b5e565b91506153f882615391565b604082019050919050565b6000602082019050818103600083015261541c816153e0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615459602083613b5e565b915061546482615423565b602082019050919050565b600060208201905081810360008301526154888161544c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006154b68261548f565b6154c0818561549a565b93506154d0818560208601613b6f565b6154d981613b99565b840191505092915050565b60006080820190506154f96000830187613c9a565b6155066020830186613c9a565b6155136040830185613d30565b818103606083015261552581846154ab565b905095945050505050565b60008151905061553f81613ac4565b92915050565b60006020828403121561555b5761555a613a8e565b5b600061556984828501615530565b91505092915050565b600081905092915050565b600061558882613b53565b6155928185615572565b93506155a2818560208601613b6f565b80840191505092915050565b60006155ba828561557d565b91506155c6828461557d565b91508190509392505050565b60006155dd82613c05565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361560f5761560e614bab565b5b600182019050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615650601883613b5e565b915061565b8261561a565b602082019050919050565b6000602082019050818103600083015261567f81615643565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006156bc601f83613b5e565b91506156c782615686565b602082019050919050565b600060208201905081810360008301526156eb816156af565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061574e602283613b5e565b9150615759826156f2565b604082019050919050565b6000602082019050818103600083015261577d81615741565b9050919050565b600060808201905061579960008301876145f3565b6157a66020830186614d96565b6157b360408301856145f3565b6157c060608301846145f3565b95945050505050565b6157d282613b53565b67ffffffffffffffff8111156157eb576157ea614687565b5b6157f58254614adf565b615800828285614f06565b600060209050601f8311600181146158335760008415615821578287015190505b61582b8582614f77565b865550615893565b601f19841661584186614de7565b60005b8281101561586957848901518255600182019150602085019450602081019050615844565b868310156158865784890151615882601f891682614f59565b8355505b6001600288020188555050505b50505050505056fea2646970667358221220e46f34ba4821bd5ea007e80925f40ecf513828fe974c7c704b929c218183162e64736f6c634300081100330000000000000000000000002fb223fbe0b8ccd5bc3b328e4601d5b48029450e00000000000000000000000045575881759c7bb69401c4bd9e8abfa495e2294e0000000000000000000000000000000000000000000000000000000064a56cd40000000000000000000000000000000000000000000000000000000064a6be54

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063715018a61161014f578063ab231f9a116100c1578063d6c6a4cc1161007a578063d6c6a4cc14610977578063d78d8e89146109a0578063e28acaca146109dd578063e985e9c514610a08578063f2fde38b14610a45578063f8c11b3a14610a6e5761027d565b8063ab231f9a14610864578063b88d4fde146108a1578063c23dc68f146108bd578063c4c00391146108fa578063c87b56dd14610923578063d0427b33146109605761027d565b8063931e2e4911610113578063931e2e491461075457806395d89b411461077f57806399a2557a146107aa5780639f6d2164146107e7578063a22cb46514610810578063a886c377146108395761027d565b8063715018a614610681578063717a002b146106985780638462151c146106c35780638da5cb5b146107005780638f53b96d1461072b5761027d565b8063333ecc92116101f35780636154e7ef116101ac5780636154e7ef1461054f5780636352211e1461058c5780636a825db4146105c95780636c19e783146105f25780636f58ec481461061b57806370a08231146106445761027d565b8063333ecc92146104625780633ccfd60b1461047957806342842e0e14610490578063456cc814146104ac5780634e3a7c08146104e95780635bbb2177146105125761027d565b806318160ddd1161024557806318160ddd1461036e5780631def2a3414610399578063238ac933146103d657806323b872dd14610401578063288b68021461041d57806330176e13146104395761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b31461032757806310be9bbd14610343575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613af0565b610a99565b6040516102b69190613b38565b60405180910390f35b3480156102cb57600080fd5b506102d4610b2b565b6040516102e19190613be3565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613c3b565b610bbd565b60405161031e9190613ca9565b60405180910390f35b610341600480360381019061033c9190613cf0565b610c3c565b005b34801561034f57600080fd5b50610358610d80565b6040516103659190613b38565b60405180910390f35b34801561037a57600080fd5b50610383610d93565b6040516103909190613d3f565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190613c3b565b610daa565b6040516103cd9190613dd1565b60405180910390f35b3480156103e257600080fd5b506103eb610dca565b6040516103f89190613ca9565b60405180910390f35b61041b60048036038101906104169190613dec565b610df0565b005b61043760048036038101906104329190613ed3565b611112565b005b34801561044557600080fd5b50610460600480360381019061045b9190613f8b565b6114e8565b005b34801561046e57600080fd5b50610477611506565b005b34801561048557600080fd5b5061048e61153a565b005b6104aa60048036038101906104a59190613dec565b61158b565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613fd8565b6115ab565b6040516104e09190613b38565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190613c3b565b6115cb565b005b34801561051e57600080fd5b506105396004803603810190610534919061405b565b6116b3565b604051610546919061420b565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190613c3b565b611776565b6040516105839190613d3f565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190613c3b565b611791565b6040516105c09190613ca9565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190614283565b6117a3565b005b3480156105fe57600080fd5b5061061960048036038101906106149190613fd8565b611c2e565b005b34801561062757600080fd5b50610642600480360381019061063d9190614333565b611c7a565b005b34801561065057600080fd5b5061066b60048036038101906106669190613fd8565b611ca6565b6040516106789190613d3f565b60405180910390f35b34801561068d57600080fd5b50610696611d5e565b005b3480156106a457600080fd5b506106ad611d72565b6040516106ba919061436f565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190613fd8565b611d88565b6040516106f79190614448565b60405180910390f35b34801561070c57600080fd5b50610715611ecb565b6040516107229190613ca9565b60405180910390f35b34801561073757600080fd5b50610752600480360381019061074d9190613c3b565b611ef5565b005b34801561076057600080fd5b50610769611f0a565b604051610776919061436f565b60405180910390f35b34801561078b57600080fd5b50610794611f20565b6040516107a19190613be3565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc919061446a565b611fb2565b6040516107de9190614448565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190614513565b6121be565b005b34801561081c57600080fd5b50610837600480360381019061083291906145b3565b612421565b005b34801561084557600080fd5b5061084e61252c565b60405161085b9190614602565b60405180910390f35b34801561087057600080fd5b5061088b6004803603810190610886919061461d565b612532565b6040516108989190614667565b60405180910390f35b6108bb60048036038101906108b691906147b2565b612553565b005b3480156108c957600080fd5b506108e460048036038101906108df9190613c3b565b6125c6565b6040516108f1919061488a565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190614a27565b612630565b005b34801561092f57600080fd5b5061094a60048036038101906109459190613c3b565b612652565b6040516109579190613be3565b60405180910390f35b34801561096c57600080fd5b506109756127bd565b005b34801561098357600080fd5b5061099e60048036038101906109999190614333565b6127f1565b005b3480156109ac57600080fd5b506109c760048036038101906109c29190613c3b565b61281d565b6040516109d49190614667565b60405180910390f35b3480156109e957600080fd5b506109f261284b565b6040516109ff9190613ca9565b60405180910390f35b348015610a1457600080fd5b50610a2f6004803603810190610a2a9190614a70565b612871565b604051610a3c9190613b38565b60405180910390f35b348015610a5157600080fd5b50610a6c6004803603810190610a679190613fd8565b612905565b005b348015610a7a57600080fd5b50610a83612988565b604051610a909190613b38565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b245750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b3a90614adf565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6690614adf565b8015610bb35780601f10610b8857610100808354040283529160200191610bb3565b820191906000526020600020905b815481529060010190602001808311610b9657829003601f168201915b5050505050905090565b6000610bc88261299b565b610bfe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c4782611791565b90508073ffffffffffffffffffffffffffffffffffffffff16610c686129fa565b73ffffffffffffffffffffffffffffffffffffffff1614610ccb57610c9481610c8f6129fa565b612871565b610cca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601460019054906101000a900460ff1681565b6000610d9d612a02565b6001546000540303905090565b60166020528060005260406000206000915054906101000a900460ff1681565b601060089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610dfb82612a0b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e62576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e6e84612ad7565b91509150610e848187610e7f6129fa565b612afe565b610ed057610e9986610e946129fa565b612871565b610ecf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610f36576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f438686866001612b42565b8015610f4e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061101c85610ff8888887612b48565b7c020000000000000000000000000000000000000000000000000000000017612b70565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036110a257600060018501905060006004600083815260200190815260200160002054036110a057600054811461109f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461110a8686866001612b9b565b505050505050565b601060009054906101000a900463ffffffff1663ffffffff1642101580156111515750601060049054906101000a900463ffffffff1663ffffffff1642105b611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790614b5c565b60405180910390fd5b60098360048111156111a5576111a4613d5a565b5b600581106111b6576111b5614b7c565b5b601091828204019190066002029054906101000a900461ffff1661ffff168260ff16601560008660048111156111ef576111ee613d5a565b5b600481111561120157611200613d5a565b5b815260200190815260200160002060009054906101000a900461ffff166112289190614bda565b61ffff16111561126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490614c5c565b60405180910390fd5b600a8260ff1611156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90614cc8565b60405180910390fd5b8160ff16600a8460048111156112cd576112cc613d5a565b5b600581106112de576112dd614b7c565b5b01546112ea9190614ce8565b341461132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290614d76565b60405180910390fd5b6000611335612ba1565b9050611344338460ff16612baa565b60005b8360ff168160ff1610156113a05784601660008360ff168501815260200190815260200160002060006101000a81548160ff021916908360048111156113905761138f613d5a565b5b0217905550806001019050611347565b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ec195d62338660048111156113f3576113f2613d5a565b5b866040518463ffffffff1660e01b815260040161141293929190614da5565b600060405180830381600087803b15801561142c57600080fd5b505af1158015611440573d6000803e3d6000fd5b505050508260ff166015600086600481111561145f5761145e613d5a565b5b600481111561147157611470613d5a565b5b815260200190815260200160002060008282829054906101000a900461ffff1661149b9190614bda565b92506101000a81548161ffff021916908361ffff160217905550817f473355fca9874d7521d93ab03ab4522ab4981210336905682cac9c40f562db8b60405160405180910390a250505050565b6114f0612bc8565b818160129182611501929190614f93565b505050565b61150e612bc8565b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b611542612bc8565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611588573d6000803e3d6000fd5b50565b6115a683838360405180602001604052806000815250612553565b505050565b60176020528060005260406000206000915054906101000a900460ff1681565b601460009054906101000a900460ff1661161a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611611906150af565b60405180910390fd5b61162381612c46565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166348fe5405336040518263ffffffff1660e01b815260040161167e9190613ca9565b600060405180830381600087803b15801561169857600080fd5b505af11580156116ac573d6000803e3d6000fd5b5050505050565b6060600083839050905060008167ffffffffffffffff8111156116d9576116d8614687565b5b60405190808252806020026020018201604052801561171257816020015b6116ff61395b565b8152602001906001900390816116f75790505b50905060005b82811461176a5761174186868381811061173557611734614b7c565b5b905060200201356125c6565b82828151811061175457611753614b7c565b5b6020026020010181905250806001019050611718565b50809250505092915050565b600a816005811061178657600080fd5b016000915090505481565b600061179c82612a0b565b9050919050565b601060009054906101000a900463ffffffff1663ffffffff1642101580156117e25750601060049054906101000a900463ffffffff1663ffffffff1642105b611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890614b5c565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a59061511b565b60405180910390fd5b611922838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f54336040516020016119079190615183565b60405160208183030381529060405280519060200120612c54565b611961576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611958906151ea565b60405180910390fd5b600984600481111561197657611975613d5a565b5b6005811061198757611986614b7c565b5b601091828204019190066002029054906101000a900461ffff1661ffff166001601560008760048111156119be576119bd613d5a565b5b60048111156119d0576119cf613d5a565b5b815260200190815260200160002060009054906101000a900461ffff166119f79190614bda565b61ffff161115611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3390614c5c565b60405180910390fd5b6000611a46612ba1565b9050611a53336001612baa565b846016600083815260200190815260200160002060006101000a81548160ff02191690836004811115611a8957611a88613d5a565b5b02179055506001601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ec195d6233876004811115611b3857611b37613d5a565b5b60016040518463ffffffff1660e01b8152600401611b5893929190615245565b600060405180830381600087803b158015611b7257600080fd5b505af1158015611b86573d6000803e3d6000fd5b5050505060156000866004811115611ba157611ba0613d5a565b5b6004811115611bb357611bb2613d5a565b5b8152602001908152602001600020600081819054906101000a900461ffff1680929190611bdf9061527c565b91906101000a81548161ffff021916908361ffff16021790555050817f473355fca9874d7521d93ab03ab4522ab4981210336905682cac9c40f562db8b60405160405180910390a25050505050565b611c36612bc8565b80601060086101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c82612bc8565b80601060006101000a81548163ffffffff021916908363ffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d0d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611d66612bc8565b611d706000612c6b565b565b601060049054906101000a900463ffffffff1681565b60606000806000611d9885611ca6565b905060008167ffffffffffffffff811115611db657611db5614687565b5b604051908082528060200260200182016040528015611de45781602001602082028036833780820191505090505b509050611def61395b565b6000611df9612a02565b90505b838614611ebd57611e0c81612d31565b91508160400151611eb257600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e5757816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611eb15780838780600101985081518110611ea457611ea3614b7c565b5b6020026020010181815250505b5b806001019050611dfc565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611efd612bc8565b8060001b600f8190555050565b601060009054906101000a900463ffffffff1681565b606060038054611f2f90614adf565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5b90614adf565b8015611fa85780601f10611f7d57610100808354040283529160200191611fa8565b820191906000526020600020905b815481529060010190602001808311611f8b57829003601f168201915b5050505050905090565b6060818310611fed576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611ff8612ba1565b9050612002612a02565b85101561201457612011612a02565b94505b80841115612020578093505b600061202b87611ca6565b90508486101561204e576000868603905081811015612048578091505b50612053565b600090505b60008167ffffffffffffffff81111561206f5761206e614687565b5b60405190808252806020026020018201604052801561209d5781602001602082028036833780820191505090505b509050600082036120b457809450505050506121b7565b60006120bf886125c6565b9050600081604001516120d457816000015190505b60008990505b8881141580156120ea5750848714155b156121a9576120f881612d31565b9250826040015161219e57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461214357826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361219d57808488806001019950815181106121905761218f614b7c565b5b6020026020010181815250505b5b8060010190506120da565b508583528296505050505050505b9392505050565b601460009054906101000a900460ff1661220d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612204906150af565b60405180910390fd5b60008484336040516020016122229190615183565b6040516020818303038152906040528051906020012060405160200161224a939291906152e8565b60405160208183030381529060405280519060200120905060006122c384848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506122b584612d5c565b612d9290919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff16601060089054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c90615371565b60405180910390fd5b61235e86612c46565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166382b59931336040518263ffffffff1660e01b81526004016123b99190613ca9565b600060405180830381600087803b1580156123d357600080fd5b505af11580156123e7573d6000803e3d6000fd5b5050505084867fce3be0da73512a5e288d3ee8276d2dac36afe66de859b3c0e3861139b2c6e9c960405160405180910390a3505050505050565b806007600061242e6129fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166124db6129fa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125209190613b38565b60405180910390a35050565b600f5481565b60156020528060005260406000206000915054906101000a900461ffff1681565b61255e848484610df0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125c05761258984848484612db9565b6125bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6125ce61395b565b6125d661395b565b6125de612a02565b8310806125f257506125ee612ba1565b8310155b15612600578091505061262b565b61260983612d31565b905080604001511561261e578091505061262b565b61262783612f09565b9150505b919050565b612638612bc8565b806013908051906020019061264e9291906139aa565b5050565b6060601460019054906101000a900460ff16156126795761267282612f29565b90506127b8565b6126828261299b565b6126b8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005601380549050146126dc576040518060200160405280600081525090506127b8565b60136016600084815260200190815260200160002060009054906101000a900460ff16600481111561271157612710613d5a565b5b8154811061272257612721614b7c565b5b90600052602060002001805461273790614adf565b80601f016020809104026020016040519081016040528092919081815260200182805461276390614adf565b80156127b05780601f10612785576101008083540402835291602001916127b0565b820191906000526020600020905b81548152906001019060200180831161279357829003601f168201915b505050505090505b919050565b6127c5612bc8565b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b6127f9612bc8565b80601060046101000a81548163ffffffff021916908363ffffffff16021790555050565b6009816005811061282d57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61290d612bc8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361297c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297390615403565b60405180910390fd5b61298581612c6b565b50565b601460009054906101000a900460ff1681565b6000816129a6612a02565b111580156129b5575060005482105b80156129f3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080612a1a612a02565b11612aa057600054811015612a9f5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612a9d575b60008103612a93576004600083600190039350838152602001908152602001600020549050612a69565b8092505050612ad2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612b5f868684612fc7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008054905090565b612bc4828260405180602001604052806000815250612fd0565b5050565b612bd061306d565b73ffffffffffffffffffffffffffffffffffffffff16612bee611ecb565b73ffffffffffffffffffffffffffffffffffffffff1614612c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3b9061546f565b60405180910390fd5b565b612c51816000613075565b50565b600082612c6185846132c7565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d3961395b565b612d55600460008481526020019081526020016000205461331d565b9050919050565b60007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005281601c52603c6000209050919050565b6000806000612da185856133d3565b91509150612dae81613424565b819250505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ddf6129fa565b8786866040518563ffffffff1660e01b8152600401612e0194939291906154e4565b6020604051808303816000875af1925050508015612e3d57506040513d601f19601f82011682018060405250810190612e3a9190615545565b60015b612eb6573d8060008114612e6d576040519150601f19603f3d011682016040523d82523d6000602084013e612e72565b606091505b506000815103612eae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612f1161395b565b612f22612f1d83612a0b565b61331d565b9050919050565b6060612f348261299b565b612f6a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612f7461358a565b90506000815103612f945760405180602001604052806000815250612fbf565b80612f9e8461361c565b604051602001612faf9291906155ae565b6040516020818303038152906040525b915050919050565b60009392505050565b612fda838361366c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461306857600080549050600083820390505b61301a6000868380600101945086612db9565b613050576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061300757816000541461306557600080fd5b50505b505050565b600033905090565b600061308083612a0b565b9050600081905060008061309386612ad7565b9150915084156130fc576130af81846130aa6129fa565b612afe565b6130fb576130c4836130bf6129fa565b612871565b6130fa576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61310a836000886001612b42565b801561311557600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506131bd8361317a85600088612b48565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612b70565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036132435760006001870190506000600460008381526020019081526020016000205403613241576000548114613240578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132ad836000886001612b9b565b600160008154809291906001019190505550505050505050565b60008082905060005b8451811015613312576132fd828683815181106132f0576132ef614b7c565b5b6020026020010151613827565b9150808061330a906155d2565b9150506132d0565b508091505092915050565b61332561395b565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008060418351036134145760008060006020860151925060408601519150606086015160001a905061340887828585613852565b9450945050505061341d565b60006002915091505b9250929050565b6000600481111561343857613437613d5a565b5b81600481111561344b5761344a613d5a565b5b0315613587576001600481111561346557613464613d5a565b5b81600481111561347857613477613d5a565b5b036134b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134af90615666565b60405180910390fd5b600260048111156134cc576134cb613d5a565b5b8160048111156134df576134de613d5a565b5b0361351f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613516906156d2565b60405180910390fd5b6003600481111561353357613532613d5a565b5b81600481111561354657613545613d5a565b5b03613586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357d90615764565b60405180910390fd5b5b50565b60606012805461359990614adf565b80601f01602080910402602001604051908101604052809291908181526020018280546135c590614adf565b80156136125780601f106135e757610100808354040283529160200191613612565b820191906000526020600020905b8154815290600101906020018083116135f557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561365757600184039350600a81066030018453600a8104905080613635575b50828103602084039350808452505050919050565b600080549050600082036136ac576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6136b96000848385612b42565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613730836137216000866000612b48565b61372a85613934565b17612b70565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146137d157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613796565b506000820361380c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506138226000848385612b9b565b505050565b600081831061383f5761383a8284613944565b61384a565b6138498383613944565b5b905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561388d57600060039150915061392b565b6000600187878787604051600081526020016040526040516138b29493929190615784565b6020604051602081039080840390855afa1580156138d4573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036139225760006001925092505061392b565b80600092509250505b94509492505050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b8280548282559060005260206000209081019282156139f2579160200282015b828111156139f15782518290816139e191906157c9565b50916020019190600101906139ca565b5b5090506139ff9190613a03565b5090565b5b80821115613a235760008181613a1a9190613a27565b50600101613a04565b5090565b508054613a3390614adf565b6000825580601f10613a455750613a64565b601f016020900490600052602060002090810190613a639190613a67565b5b50565b5b80821115613a80576000816000905550600101613a68565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613acd81613a98565b8114613ad857600080fd5b50565b600081359050613aea81613ac4565b92915050565b600060208284031215613b0657613b05613a8e565b5b6000613b1484828501613adb565b91505092915050565b60008115159050919050565b613b3281613b1d565b82525050565b6000602082019050613b4d6000830184613b29565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b8d578082015181840152602081019050613b72565b60008484015250505050565b6000601f19601f8301169050919050565b6000613bb582613b53565b613bbf8185613b5e565b9350613bcf818560208601613b6f565b613bd881613b99565b840191505092915050565b60006020820190508181036000830152613bfd8184613baa565b905092915050565b6000819050919050565b613c1881613c05565b8114613c2357600080fd5b50565b600081359050613c3581613c0f565b92915050565b600060208284031215613c5157613c50613a8e565b5b6000613c5f84828501613c26565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c9382613c68565b9050919050565b613ca381613c88565b82525050565b6000602082019050613cbe6000830184613c9a565b92915050565b613ccd81613c88565b8114613cd857600080fd5b50565b600081359050613cea81613cc4565b92915050565b60008060408385031215613d0757613d06613a8e565b5b6000613d1585828601613cdb565b9250506020613d2685828601613c26565b9150509250929050565b613d3981613c05565b82525050565b6000602082019050613d546000830184613d30565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110613d9a57613d99613d5a565b5b50565b6000819050613dab82613d89565b919050565b6000613dbb82613d9d565b9050919050565b613dcb81613db0565b82525050565b6000602082019050613de66000830184613dc2565b92915050565b600080600060608486031215613e0557613e04613a8e565b5b6000613e1386828701613cdb565b9350506020613e2486828701613cdb565b9250506040613e3586828701613c26565b9150509250925092565b60058110613e4c57600080fd5b50565b600081359050613e5e81613e3f565b92915050565b600060ff82169050919050565b613e7a81613e64565b8114613e8557600080fd5b50565b600081359050613e9781613e71565b92915050565b6000819050919050565b613eb081613e9d565b8114613ebb57600080fd5b50565b600081359050613ecd81613ea7565b92915050565b600080600060608486031215613eec57613eeb613a8e565b5b6000613efa86828701613e4f565b9350506020613f0b86828701613e88565b9250506040613f1c86828701613ebe565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112613f4b57613f4a613f26565b5b8235905067ffffffffffffffff811115613f6857613f67613f2b565b5b602083019150836001820283011115613f8457613f83613f30565b5b9250929050565b60008060208385031215613fa257613fa1613a8e565b5b600083013567ffffffffffffffff811115613fc057613fbf613a93565b5b613fcc85828601613f35565b92509250509250929050565b600060208284031215613fee57613fed613a8e565b5b6000613ffc84828501613cdb565b91505092915050565b60008083601f84011261401b5761401a613f26565b5b8235905067ffffffffffffffff81111561403857614037613f2b565b5b60208301915083602082028301111561405457614053613f30565b5b9250929050565b6000806020838503121561407257614071613a8e565b5b600083013567ffffffffffffffff8111156140905761408f613a93565b5b61409c85828601614005565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6140dd81613c88565b82525050565b600067ffffffffffffffff82169050919050565b614100816140e3565b82525050565b61410f81613b1d565b82525050565b600062ffffff82169050919050565b61412d81614115565b82525050565b60808201600082015161414960008501826140d4565b50602082015161415c60208501826140f7565b50604082015161416f6040850182614106565b5060608201516141826060850182614124565b50505050565b60006141948383614133565b60808301905092915050565b6000602082019050919050565b60006141b8826140a8565b6141c281856140b3565b93506141cd836140c4565b8060005b838110156141fe5781516141e58882614188565b97506141f0836141a0565b9250506001810190506141d1565b5085935050505092915050565b6000602082019050818103600083015261422581846141ad565b905092915050565b60008083601f84011261424357614242613f26565b5b8235905067ffffffffffffffff8111156142605761425f613f2b565b5b60208301915083602082028301111561427c5761427b613f30565b5b9250929050565b6000806000806060858703121561429d5761429c613a8e565b5b60006142ab87828801613e4f565b945050602085013567ffffffffffffffff8111156142cc576142cb613a93565b5b6142d88782880161422d565b935093505060406142eb87828801613ebe565b91505092959194509250565b600063ffffffff82169050919050565b614310816142f7565b811461431b57600080fd5b50565b60008135905061432d81614307565b92915050565b60006020828403121561434957614348613a8e565b5b60006143578482850161431e565b91505092915050565b614369816142f7565b82525050565b60006020820190506143846000830184614360565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6143bf81613c05565b82525050565b60006143d183836143b6565b60208301905092915050565b6000602082019050919050565b60006143f58261438a565b6143ff8185614395565b935061440a836143a6565b8060005b8381101561443b57815161442288826143c5565b975061442d836143dd565b92505060018101905061440e565b5085935050505092915050565b6000602082019050818103600083015261446281846143ea565b905092915050565b60008060006060848603121561448357614482613a8e565b5b600061449186828701613cdb565b93505060206144a286828701613c26565b92505060406144b386828701613c26565b9150509250925092565b60008083601f8401126144d3576144d2613f26565b5b8235905067ffffffffffffffff8111156144f0576144ef613f2b565b5b60208301915083600182028301111561450c5761450b613f30565b5b9250929050565b6000806000806060858703121561452d5761452c613a8e565b5b600061453b87828801613c26565b945050602061454c87828801613ebe565b935050604085013567ffffffffffffffff81111561456d5761456c613a93565b5b614579878288016144bd565b925092505092959194509250565b61459081613b1d565b811461459b57600080fd5b50565b6000813590506145ad81614587565b92915050565b600080604083850312156145ca576145c9613a8e565b5b60006145d885828601613cdb565b92505060206145e98582860161459e565b9150509250929050565b6145fc81613e9d565b82525050565b600060208201905061461760008301846145f3565b92915050565b60006020828403121561463357614632613a8e565b5b600061464184828501613e4f565b91505092915050565b600061ffff82169050919050565b6146618161464a565b82525050565b600060208201905061467c6000830184614658565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6146bf82613b99565b810181811067ffffffffffffffff821117156146de576146dd614687565b5b80604052505050565b60006146f1613a84565b90506146fd82826146b6565b919050565b600067ffffffffffffffff82111561471d5761471c614687565b5b61472682613b99565b9050602081019050919050565b82818337600083830152505050565b600061475561475084614702565b6146e7565b90508281526020810184848401111561477157614770614682565b5b61477c848285614733565b509392505050565b600082601f83011261479957614798613f26565b5b81356147a9848260208601614742565b91505092915050565b600080600080608085870312156147cc576147cb613a8e565b5b60006147da87828801613cdb565b94505060206147eb87828801613cdb565b93505060406147fc87828801613c26565b925050606085013567ffffffffffffffff81111561481d5761481c613a93565b5b61482987828801614784565b91505092959194509250565b60808201600082015161484b60008501826140d4565b50602082015161485e60208501826140f7565b5060408201516148716040850182614106565b5060608201516148846060850182614124565b50505050565b600060808201905061489f6000830184614835565b92915050565b600067ffffffffffffffff8211156148c0576148bf614687565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156148ec576148eb614687565b5b6148f582613b99565b9050602081019050919050565b6000614915614910846148d1565b6146e7565b90508281526020810184848401111561493157614930614682565b5b61493c848285614733565b509392505050565b600082601f83011261495957614958613f26565b5b8135614969848260208601614902565b91505092915050565b6000614985614980846148a5565b6146e7565b905080838252602082019050602084028301858111156149a8576149a7613f30565b5b835b818110156149ef57803567ffffffffffffffff8111156149cd576149cc613f26565b5b8086016149da8982614944565b855260208501945050506020810190506149aa565b5050509392505050565b600082601f830112614a0e57614a0d613f26565b5b8135614a1e848260208601614972565b91505092915050565b600060208284031215614a3d57614a3c613a8e565b5b600082013567ffffffffffffffff811115614a5b57614a5a613a93565b5b614a67848285016149f9565b91505092915050565b60008060408385031215614a8757614a86613a8e565b5b6000614a9585828601613cdb565b9250506020614aa685828601613cdb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614af757607f821691505b602082108103614b0a57614b09614ab0565b5b50919050565b7f4d696e74206e6f74206163746976650000000000000000000000000000000000600082015250565b6000614b46600f83613b5e565b9150614b5182614b10565b602082019050919050565b60006020820190508181036000830152614b7581614b39565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614be58261464a565b9150614bf08361464a565b9250828201905061ffff811115614c0a57614c09614bab565b5b92915050565b7f477269642073697a6520736f6c64206f75740000000000000000000000000000600082015250565b6000614c46601283613b5e565b9150614c5182614c10565b602082019050919050565b60006020820190508181036000830152614c7581614c39565b9050919050565b7f4d696e74696e6720746f6f206d616e7920696e207472616e73616374696f6e00600082015250565b6000614cb2601f83613b5e565b9150614cbd82614c7c565b602082019050919050565b60006020820190508181036000830152614ce181614ca5565b9050919050565b6000614cf382613c05565b9150614cfe83613c05565b9250828202614d0c81613c05565b91508282048414831517614d2357614d22614bab565b5b5092915050565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b6000614d60601483613b5e565b9150614d6b82614d2a565b602082019050919050565b60006020820190508181036000830152614d8f81614d53565b9050919050565b614d9f81613e64565b82525050565b6000606082019050614dba6000830186613c9a565b614dc76020830185614d96565b614dd46040830184614d96565b949350505050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614e497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614e0c565b614e538683614e0c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614e90614e8b614e8684613c05565b614e6b565b613c05565b9050919050565b6000819050919050565b614eaa83614e75565b614ebe614eb682614e97565b848454614e19565b825550505050565b600090565b614ed3614ec6565b614ede818484614ea1565b505050565b5b81811015614f0257614ef7600082614ecb565b600181019050614ee4565b5050565b601f821115614f4757614f1881614de7565b614f2184614dfc565b81016020851015614f30578190505b614f44614f3c85614dfc565b830182614ee3565b50505b505050565b600082821c905092915050565b6000614f6a60001984600802614f4c565b1980831691505092915050565b6000614f838383614f59565b9150826002028217905092915050565b614f9d8383614ddc565b67ffffffffffffffff811115614fb657614fb5614687565b5b614fc08254614adf565b614fcb828285614f06565b6000601f831160018114614ffa5760008415614fe8578287013590505b614ff28582614f77565b86555061505a565b601f19841661500886614de7565b60005b828110156150305784890135825560018201915060208501945060208101905061500b565b8683101561504d5784890135615049601f891682614f59565b8355505b6001600288020188555050505b50505050505050565b7f43616e6e6f74206275726e000000000000000000000000000000000000000000600082015250565b6000615099600b83613b5e565b91506150a482615063565b602082019050919050565b600060208201905081810360008301526150c88161508c565b9050919050565b7f46726565206d696e742075736564000000000000000000000000000000000000600082015250565b6000615105600e83613b5e565b9150615110826150cf565b602082019050919050565b60006020820190508181036000830152615134816150f8565b9050919050565b60008160601b9050919050565b60006151538261513b565b9050919050565b600061516582615148565b9050919050565b61517d61517882613c88565b61515a565b82525050565b600061518f828461516c565b60148201915081905092915050565b7f43616e6e6f74207573652066726565206d696e74000000000000000000000000600082015250565b60006151d4601483613b5e565b91506151df8261519e565b602082019050919050565b60006020820190508181036000830152615203816151c7565b9050919050565b6000819050919050565b600061522f61522a6152258461520a565b614e6b565b613e64565b9050919050565b61523f81615214565b82525050565b600060608201905061525a6000830186613c9a565b6152676020830185614d96565b6152746040830184615236565b949350505050565b60006152878261464a565b915061ffff820361529b5761529a614bab565b5b600182019050919050565b6000819050919050565b6152c16152bc82613c05565b6152a6565b82525050565b6000819050919050565b6152e26152dd82613e9d565b6152c7565b82525050565b60006152f482866152b0565b60208201915061530482856152d1565b60208201915061531482846152d1565b602082019150819050949350505050565b7f496e76616c696420616374696f6e000000000000000000000000000000000000600082015250565b600061535b600e83613b5e565b915061536682615325565b602082019050919050565b6000602082019050818103600083015261538a8161534e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153ed602683613b5e565b91506153f882615391565b604082019050919050565b6000602082019050818103600083015261541c816153e0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615459602083613b5e565b915061546482615423565b602082019050919050565b600060208201905081810360008301526154888161544c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006154b68261548f565b6154c0818561549a565b93506154d0818560208601613b6f565b6154d981613b99565b840191505092915050565b60006080820190506154f96000830187613c9a565b6155066020830186613c9a565b6155136040830185613d30565b818103606083015261552581846154ab565b905095945050505050565b60008151905061553f81613ac4565b92915050565b60006020828403121561555b5761555a613a8e565b5b600061556984828501615530565b91505092915050565b600081905092915050565b600061558882613b53565b6155928185615572565b93506155a2818560208601613b6f565b80840191505092915050565b60006155ba828561557d565b91506155c6828461557d565b91508190509392505050565b60006155dd82613c05565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361560f5761560e614bab565b5b600182019050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615650601883613b5e565b915061565b8261561a565b602082019050919050565b6000602082019050818103600083015261567f81615643565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006156bc601f83613b5e565b91506156c782615686565b602082019050919050565b600060208201905081810360008301526156eb816156af565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061574e602283613b5e565b9150615759826156f2565b604082019050919050565b6000602082019050818103600083015261577d81615741565b9050919050565b600060808201905061579960008301876145f3565b6157a66020830186614d96565b6157b360408301856145f3565b6157c060608301846145f3565b95945050505050565b6157d282613b53565b67ffffffffffffffff8111156157eb576157ea614687565b5b6157f58254614adf565b615800828285614f06565b600060209050601f8311600181146158335760008415615821578287015190505b61582b8582614f77565b865550615893565b601f19841661584186614de7565b60005b8281101561586957848901518255600182019150602085019450602081019050615844565b868310156158865784890151615882601f891682614f59565b8355505b6001600288020188555050505b50505050505056fea2646970667358221220e46f34ba4821bd5ea007e80925f40ecf513828fe974c7c704b929c218183162e64736f6c63430008110033

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

0000000000000000000000002fb223fbe0b8ccd5bc3b328e4601d5b48029450e00000000000000000000000045575881759c7bb69401c4bd9e8abfa495e2294e0000000000000000000000000000000000000000000000000000000064a56cd40000000000000000000000000000000000000000000000000000000064a6be54

-----Decoded View---------------
Arg [0] : newAudiblesKeyManager (address): 0x2Fb223FBE0b8cCD5bC3B328e4601D5b48029450E
Arg [1] : newSigner (address): 0x45575881759C7bB69401c4Bd9e8aBFa495E2294e
Arg [2] : mintStart (uint32): 1688562900
Arg [3] : mintEnd (uint32): 1688649300

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000002fb223fbe0b8ccd5bc3b328e4601d5b48029450e
Arg [1] : 00000000000000000000000045575881759c7bb69401c4bd9e8abfa495e2294e
Arg [2] : 0000000000000000000000000000000000000000000000000000000064a56cd4
Arg [3] : 0000000000000000000000000000000000000000000000000000000064a6be54


Deployed Bytecode Sourcemap

577:5981:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1414:28:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5894:317:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1507:49:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1249:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2955:1017:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5450:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5238:94;;;;;;;;;;;;;:::i;:::-;;5784:107;;;;;;;;;;;;;:::i;:::-;;22758:187:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1562:44:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3978:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1641:513:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1002:143:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11391:150:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1938:1011:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5686:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4935:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7045:230:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:0;;;;;;;;;;;;;:::i;:::-;;1218:25:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5417:879:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5133:99:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1185:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10208:102:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2528:2454:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4219:710:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1152:27:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1449:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23526:396:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1070:418:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5565:115:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6112:444;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5338:106;;;;;;;;;;;;;:::i;:::-;;5038:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;937:59;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1276:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17282:162:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1384:24:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9155:630:9;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;10039:98::-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;1414:28:7:-;;;;;;;;;;;;;:::o;5894:317:9:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;1507:49:7:-;;;;;;;;;;;;;;;;;;;;;;:::o;1249:21::-;;;;;;;;;;;;;:::o;19903:2764:9:-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;2955:1017:7:-;3117:13;;;;;;;;;;;3098:32;;:15;:32;;:65;;;;;3152:11;;;;;;;;;;;3134:29;;:15;:29;3098:65;3077:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;3273:10;3289:4;3284:10;;;;;;;;:::i;:::-;;3273:22;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;3235:60;;3261:8;3235:34;;:17;:23;3253:4;3235:23;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;:60;;;;3214:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;3369:2;3357:8;:14;;;;3349:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;3475:8;3451:32;;:9;3466:4;3461:10;;;;;;;;:::i;:::-;;3451:21;;;;;;;:::i;:::-;;;;:32;;;;:::i;:::-;3438:9;:45;3417:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;3539:15;3557:14;:12;:14::i;:::-;3539:32;;3581:31;3591:10;3603:8;3581:31;;:9;:31::i;:::-;3651:7;3646:103;3668:8;3664:12;;:1;:12;;;3646:103;;;3730:4;3701:13;:26;3725:1;3715:11;;:7;:11;3701:26;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;3678:3;;;;;3646:103;;;;3808:18;;;;;;;;;;;3768:85;;;3854:10;3872:4;3866:11;;;;;;;;:::i;:::-;;3879:8;3768:120;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3925:8;3898:35;;:17;:23;3916:4;3898:23;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3960:4;3948:17;;;;;;;;;;3067:905;2955:1017;;;:::o;5450:109::-;1094:13:0;:11;:13::i;:::-;5545:7:7::1;;5529:13;:23;;;;;;;:::i;:::-;;5450:109:::0;;:::o;5238:94::-;1094:13:0;:11;:13::i;:::-;5313:12:7::1;;;;;;;;;;;5312:13;5297:12;;:28;;;;;;;;;;;;;;;;;;5238:94::o:0;5784:107::-;1094:13:0;:11;:13::i;:::-;5841:10:7::1;5833:28;;:51;5862:21;5833:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;5784:107::o:0;22758:187:9:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;1562:44:7:-;;;;;;;;;;;;;;;;;;;;;;:::o;3978:235::-;4043:12;;;;;;;;;;;4035:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;4081:14;4087:7;4081:5;:14::i;:::-;4145:18;;;;;;;;;;;4105:89;;;4195:10;4105:101;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3978:235;:::o;1641:513:11:-;1780:23;1843:22;1868:8;;:15;;1843:40;;1897:34;1955:14;1934:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1897:73;;1989:9;1984:123;2005:14;2000:1;:19;1984:123;;2060:32;2080:8;;2089:1;2080:11;;;;;;;:::i;:::-;;;;;;;;2060:19;:32::i;:::-;2044:10;2055:1;2044:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;2021:3;;;;;1984:123;;;;2127:10;2120:17;;;;1641:513;;;;:::o;1002:143:7:-;;;;;;;;;;;;;;;;;;;;:::o;11391:150:9:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;1938:1011:7:-;2100:13;;;;;;;;;;;2081:32;;:15;:32;;:65;;;;;2135:11;;;;;;;;;;;2117:29;;:15;:29;2081:65;2060:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;2206:12;:24;2219:10;2206:24;;;;;;;;;;;;;;;;;;;;;;;;;2205:25;2197:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;2280:142;2316:5;;2280:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2339:12;;2396:10;2379:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;2369:39;;;;;;2280:18;:142::i;:::-;2259:209;;;;;;;;;;;;:::i;:::-;;;;;;;;;2530:10;2546:4;2541:10;;;;;;;;:::i;:::-;;2530:22;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;2499:53;;2525:1;2499:17;:23;2517:4;2499:23;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:27;;;;:::i;:::-;:53;;;;2478:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;2606:15;2624:14;:12;:14::i;:::-;2606:32;;2648:24;2658:10;2670:1;2648:9;:24::i;:::-;2707:4;2682:13;:22;2696:7;2682:22;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;2748:4;2721:12;:24;2734:10;2721:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;2802:18;;;;;;;;;;;2762:85;;;2848:10;2866:4;2860:11;;;;;;;;:::i;:::-;;2873:1;2762:113;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2885:17;:23;2903:4;2885:23;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;2937:4;2925:17;;;;;;;;;;2050:899;1938:1011;;;;:::o;5686:92::-;1094:13:0;:11;:13::i;:::-;5762:9:7::1;5753:6;;:18;;;;;;;;;;;;;;;;;;5686:92:::0;:::o;4935:97::-;1094:13:0;:11;:13::i;:::-;5020:5:7::1;5004:13;;:21;;;;;;;;;;;;;;;;;;4935:97:::0;:::o;7045:230:9:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;1218:25:7:-;;;;;;;;;;;;;:::o;5417:879:11:-;5495:16;5547:19;5580:25;5619:22;5644:16;5654:5;5644:9;:16::i;:::-;5619:41;;5674:25;5716:14;5702:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5674:57;;5745:31;;:::i;:::-;5795:9;5807:15;:13;:15::i;:::-;5795:27;;5790:461;5839:14;5824:11;:29;5790:461;;5890:15;5903:1;5890:12;:15::i;:::-;5878:27;;5927:9;:16;;;5967:8;5923:71;6041:1;6015:28;;:9;:14;;;:28;;;6011:109;;6087:9;:14;;;6067:34;;6011:109;6162:5;6141:26;;:17;:26;;;6137:100;;6217:1;6191:8;6200:13;;;;;;6191:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;6137:100;5790:461;5855:3;;;;;5790:461;;;;6271:8;6264:15;;;;;;;5417:879;;;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;5133:99:7:-;1094:13:0;:11;:13::i;:::-;5220:4:7::1;5212:13;;5197:12;:28;;;;5133:99:::0;:::o;1185:27::-;;;;;;;;;;;;;:::o;10208:102:9:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;2528:2454:11:-;2667:16;2732:4;2723:5;:13;2719:45;;2745:19;;;;;;;;;;;;;;2719:45;2778:19;2811:17;2831:14;:12;:14::i;:::-;2811:34;;2929:15;:13;:15::i;:::-;2921:5;:23;2917:85;;;2972:15;:13;:15::i;:::-;2964:23;;2917:85;3076:9;3069:4;:16;3065:71;;;3112:9;3105:16;;3065:71;3149:25;3177:16;3187:5;3177:9;:16::i;:::-;3149:44;;3368:4;3360:5;:12;3356:271;;;3392:19;3421:5;3414:4;:12;3392:34;;3462:17;3448:11;:31;3444:109;;;3523:11;3503:31;;3444:109;3374:193;3356:271;;;3611:1;3591:21;;3356:271;3640:25;3682:17;3668:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3640:60;;3739:1;3718:17;:22;3714:76;;3767:8;3760:15;;;;;;;;3714:76;3931:31;3965:26;3985:5;3965:19;:26::i;:::-;3931:60;;4005:25;4247:9;:16;;;4242:90;;4303:9;:14;;;4283:34;;4242:90;4350:9;4362:5;4350:17;;4345:467;4374:4;4369:1;:9;;:45;;;;;4397:17;4382:11;:32;;4369:45;4345:467;;;4451:15;4464:1;4451:12;:15::i;:::-;4439:27;;4488:9;:16;;;4528:8;4484:71;4602:1;4576:28;;:9;:14;;;:28;;;4572:109;;4648:9;:14;;;4628:34;;4572:109;4723:5;4702:26;;:17;:26;;;4698:100;;4778:1;4752:8;4761:13;;;;;;4752:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;4698:100;4345:467;4416:3;;;;;4345:467;;;;4911:11;4901:8;4894:29;4957:8;4950:15;;;;;;;;2528:2454;;;;;;:::o;4219:710:7:-;4367:12;;;;;;;;;;;4359:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;4405:12;4477:7;4502:13;4560:10;4543:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;4533:39;;;;;;4443:143;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4420:176;;;;;;4405:191;;4606:17;4626:48;4664:9;;4626:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:29;:4;:27;:29::i;:::-;:37;;:48;;;;:::i;:::-;4606:68;;4702:9;4692:19;;:6;;;;;;;;;;;:19;;;4684:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;4740:14;4746:7;4740:5;:14::i;:::-;4804:18;;;;;;;;;;;4764:93;;;4858:10;4764:105;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4908:13;4899:7;4884:38;;;;;;;;;;4349:580;;4219:710;;;;:::o;16901:231:9:-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;1152:27:7:-;;;;:::o;1449:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;23526:396:9:-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;1070:418:11:-;1154:21;;:::i;:::-;1187:31;;:::i;:::-;1242:15;:13;:15::i;:::-;1232:7;:25;:54;;;;1272:14;:12;:14::i;:::-;1261:7;:25;;1232:54;1228:101;;;1309:9;1302:16;;;;;1228:101;1350:21;1363:7;1350:12;:21::i;:::-;1338:33;;1385:9;:16;;;1381:63;;;1424:9;1417:16;;;;;1381:63;1460:21;1473:7;1460:12;:21::i;:::-;1453:28;;;1070:418;;;;:::o;5565:115:7:-;1094:13:0;:11;:13::i;:::-;5662:11:7::1;5647:12;:26;;;;;;;;;;;;:::i;:::-;;5565:115:::0;:::o;6112:444::-;6210:13;6239:16;;;;;;;;;;;6235:315;;;6278:23;6293:7;6278:14;:23::i;:::-;6271:30;;;;6235:315;6337:16;6345:7;6337;:16::i;:::-;6332:59;;6362:29;;;;;;;;;;;;;;6332:59;6432:1;6409:12;:19;;;;:24;6405:72;;6453:9;;;;;;;;;;;;;;;;6405:72;6497:12;6515:13;:22;6529:7;6515:22;;;;;;;;;;;;;;;;;;;;;6510:28;;;;;;;;:::i;:::-;;6497:42;;;;;;;;:::i;:::-;;;;;;;;;6490:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6112:444;;;;:::o;5338:106::-;1094:13:0;:11;:13::i;:::-;5421:16:7::1;;;;;;;;;;;5420:17;5401:16;;:36;;;;;;;;;;;;;;;;;;5338:106::o:0;5038:89::-;1094:13:0;:11;:13::i;:::-;5117:3:7::1;5103:11;;:17;;;;;;;;;;;;;;;;;;5038:89:::0;:::o;937:59::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1276:33::-;;;;;;;;;;;;;:::o;17282:162:9:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2074:198:0:-;1094:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;::::0;2154:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;1384:24:7:-;;;;;;;;;;;;;:::o;17693:277:9:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;5897:91:7:-;5954:7;5980:1;5973:8;;5897:91;:::o;12515:1249:9:-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;13510:111;13527:1;13517:6;:11;13510:111;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;18828:474::-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;5590:101::-;5645:7;5671:13;;5664:20;;5590:101;:::o;33423:110::-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;33791:87:9:-;33850:21;33856:7;33865:5;33850;:21::i;:::-;33791:87;:::o;1156:154:4:-;1247:4;1299;1270:25;1283:5;1290:4;1270:12;:25::i;:::-;:33;1263:40;;1156:154;;;;;:::o;2426:187:0:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;11979:159:9:-;12047:21;;:::i;:::-;12087:44;12106:17;:24;12124:5;12106:24;;;;;;;;;;;;12087:18;:44::i;:::-;12080:51;;11979:159;;;:::o;7120:396:3:-;7189:15;7389:34;7383:4;7376:48;7450:4;7444;7437:18;7495:4;7489;7479:21;7468:32;;7120:396;;;:::o;3661:227::-;3739:7;3759:17;3778:18;3800:27;3811:4;3817:9;3800:10;:27::i;:::-;3758:69;;;;3837:18;3849:5;3837:11;:18::i;:::-;3872:9;3865:16;;;;3661:227;;;;:::o;25948:697:9:-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;11724:164::-;11794:21;;:::i;:::-;11834:47;11853:27;11872:7;11853:18;:27::i;:::-;11834:18;:47::i;:::-;11827:54;;11724:164;;;:::o;10411:313::-;10484:13;10514:16;10522:7;10514;:16::i;:::-;10509:59;;10539:29;;;;;;;;;;;;;;10509:59;10579:21;10603:10;:8;:10::i;:::-;10579:34;;10655:1;10636:7;10630:21;:26;:87;;;;;;;;;;;;;;;;;10683:7;10692:18;10702:7;10692:9;:18::i;:::-;10666:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10630:87;10623:94;;;10411:313;;;:::o;38475:143::-;38608:6;38475:143;;;;;:::o;32675:669::-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;34095:3015:9:-;34174:27;34204;34223:7;34204:18;:27::i;:::-;34174:57;;34242:12;34273:19;34242:52;;34306:27;34335:23;34362:35;34389:7;34362:26;:35::i;:::-;34305:92;;;;34412:13;34408:312;;;34531:68;34556:15;34573:4;34579:19;:17;:19::i;:::-;34531:24;:68::i;:::-;34526:183;;34622:43;34639:4;34645:19;:17;:19::i;:::-;34622:16;:43::i;:::-;34617:92;;34674:35;;;;;;;;;;;;;;34617:92;34526:183;34408:312;34730:51;34752:4;34766:1;34770:7;34779:1;34730:21;:51::i;:::-;34870:15;34867:157;;;35008:1;34987:19;34980:30;34867:157;35672:1;1619:3;35642:1;:26;;35641:32;35613:18;:24;35632:4;35613:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;35933:173;35969:4;36039:53;36054:4;36068:1;36072:19;36039:14;:53::i;:::-;2392:8;2118;35992:43;35991:101;35933:18;:173::i;:::-;35904:17;:26;35922:7;35904:26;;;;;;;;;;;:202;;;;36274:1;2392:8;36223:19;:47;:52;36219:617;;36295:19;36327:1;36317:7;:11;36295:33;;36482:1;36448:17;:30;36466:11;36448:30;;;;;;;;;;;;:35;36444:378;;36584:13;;36569:11;:28;36565:239;;36762:19;36729:17;:30;36747:11;36729:30;;;;;;;;;;;:52;;;;36565:239;36444:378;36277:559;36219:617;36888:7;36884:1;36861:35;;36870:4;36861:35;;;;;;;;;;;;36906:50;36927:4;36941:1;36945:7;36954:1;36906:20;:50::i;:::-;37079:12;;:14;;;;;;;;;;;;;34164:2946;;;;34095:3015;;:::o;1934:290:4:-;2017:7;2036:20;2059:4;2036:27;;2078:9;2073:116;2097:5;:12;2093:1;:16;2073:116;;;2145:33;2155:12;2169:5;2175:1;2169:8;;;;;;;;:::i;:::-;;;;;;;;2145:9;:33::i;:::-;2130:48;;2111:3;;;;;:::i;:::-;;;;2073:116;;;;2205:12;2198:19;;;1934:290;;;;:::o;13858:361:9:-;13924:31;;:::i;:::-;14000:6;13967:9;:14;;:41;;;;;;;;;;;2004:3;14052:6;:33;;14018:9;:24;;:68;;;;;;;;;;;14143:1;2118:8;14115:6;:24;:29;;14096:9;:16;;:48;;;;;;;;;;;2513:3;14183:6;:28;;14154:9;:19;;:58;;;;;;;;;;;13858:361;;;:::o;2145:730:3:-;2226:7;2235:12;2283:2;2263:9;:16;:22;2259:610;;2301:9;2324;2347:7;2599:4;2588:9;2584:20;2578:27;2573:32;;2648:4;2637:9;2633:20;2627:27;2622:32;;2705:4;2694:9;2690:20;2684:27;2681:1;2676:36;2671:41;;2746:25;2757:4;2763:1;2766;2769;2746:10;:25::i;:::-;2739:32;;;;;;;;;2259:610;2818:1;2822:35;2802:56;;;;2145:730;;;;;;:::o;570:511::-;647:20;638:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;634:441;683:7;634:441;743:29;734:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;730:345;;788:34;;;;;;;;;;:::i;:::-;;;;;;;;730:345;852:35;843:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;839:236;;903:41;;;;;;;;;;:::i;:::-;;;;;;;;839:236;974:30;965:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;961:114;;1020:44;;;;;;;;;;:::i;:::-;;;;;;;;961:114;570:511;;:::o;5994:112:7:-;6054:13;6086;6079:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5994:112;:::o;39637:1708:9:-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40716:1;40690:419;;;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41009:4;41005:13;40997:21;;41080:4;40690:419;41070:25;40690:419;40694:21;41146:3;41141;41137:13;41259:4;41254:3;41250:14;41243:21;;41322:6;41317:3;41310:19;39740:1599;;;39637:1708;;;:::o;27091:2902::-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;9205:147:4:-;9268:7;9298:1;9294;:5;:51;;9325:20;9340:1;9343;9325:14;:20::i;:::-;9294:51;;;9302:20;9317:1;9320;9302:14;:20::i;:::-;9294:51;9287:58;;9205:147;;;;:::o;5009:1456:3:-;5097:7;5106:12;6021:66;6016:1;6008:10;;:79;6004:161;;;6119:1;6123:30;6103:51;;;;;;6004:161;6259:14;6276:24;6286:4;6292:1;6295;6298;6276:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6259:41;;6332:1;6314:20;;:6;:20;;;6310:101;;6366:1;6370:29;6350:50;;;;;;;6310:101;6429:6;6437:20;6421:37;;;;;5009:1456;;;;;;;;:::o;14837:318:9:-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;9358:261:4:-;9426:13;9530:1;9524:4;9517:15;9558:1;9552:4;9545:15;9598:4;9592;9582:21;9573:30;;9358:261;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:13:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:180::-;5290:77;5287:1;5280:88;5387:4;5384:1;5377:15;5411:4;5408:1;5401:15;5428:118;5514:1;5507:5;5504:12;5494:46;;5520:18;;:::i;:::-;5494:46;5428:118;:::o;5552:137::-;5602:7;5631:5;5620:16;;5637:46;5677:5;5637:46;:::i;:::-;5552:137;;;:::o;5695:::-;5756:9;5789:37;5820:5;5789:37;:::i;:::-;5776:50;;5695:137;;;:::o;5838:153::-;5936:48;5978:5;5936:48;:::i;:::-;5931:3;5924:61;5838:153;;:::o;5997:244::-;6101:4;6139:2;6128:9;6124:18;6116:26;;6152:82;6231:1;6220:9;6216:17;6207:6;6152:82;:::i;:::-;5997:244;;;;:::o;6247:619::-;6324:6;6332;6340;6389:2;6377:9;6368:7;6364:23;6360:32;6357:119;;;6395:79;;:::i;:::-;6357:119;6515:1;6540:53;6585:7;6576:6;6565:9;6561:22;6540:53;:::i;:::-;6530:63;;6486:117;6642:2;6668:53;6713:7;6704:6;6693:9;6689:22;6668:53;:::i;:::-;6658:63;;6613:118;6770:2;6796:53;6841:7;6832:6;6821:9;6817:22;6796:53;:::i;:::-;6786:63;;6741:118;6247:619;;;;;:::o;6872:112::-;6958:1;6951:5;6948:12;6938:40;;6974:1;6971;6964:12;6938:40;6872:112;:::o;6990:165::-;7049:5;7087:6;7074:20;7065:29;;7103:46;7143:5;7103:46;:::i;:::-;6990:165;;;;:::o;7161:86::-;7196:7;7236:4;7229:5;7225:16;7214:27;;7161:86;;;:::o;7253:118::-;7324:22;7340:5;7324:22;:::i;:::-;7317:5;7314:33;7304:61;;7361:1;7358;7351:12;7304:61;7253:118;:::o;7377:135::-;7421:5;7459:6;7446:20;7437:29;;7475:31;7500:5;7475:31;:::i;:::-;7377:135;;;;:::o;7518:77::-;7555:7;7584:5;7573:16;;7518:77;;;:::o;7601:122::-;7674:24;7692:5;7674:24;:::i;:::-;7667:5;7664:35;7654:63;;7713:1;7710;7703:12;7654:63;7601:122;:::o;7729:139::-;7775:5;7813:6;7800:20;7791:29;;7829:33;7856:5;7829:33;:::i;:::-;7729:139;;;;:::o;7874:641::-;7962:6;7970;7978;8027:2;8015:9;8006:7;8002:23;7998:32;7995:119;;;8033:79;;:::i;:::-;7995:119;8153:1;8178:66;8236:7;8227:6;8216:9;8212:22;8178:66;:::i;:::-;8168:76;;8124:130;8293:2;8319:51;8362:7;8353:6;8342:9;8338:22;8319:51;:::i;:::-;8309:61;;8264:116;8419:2;8445:53;8490:7;8481:6;8470:9;8466:22;8445:53;:::i;:::-;8435:63;;8390:118;7874:641;;;;;:::o;8521:117::-;8630:1;8627;8620:12;8644:117;8753:1;8750;8743:12;8767:117;8876:1;8873;8866:12;8904:553;8962:8;8972:6;9022:3;9015:4;9007:6;9003:17;8999:27;8989:122;;9030:79;;:::i;:::-;8989:122;9143:6;9130:20;9120:30;;9173:18;9165:6;9162:30;9159:117;;;9195:79;;:::i;:::-;9159:117;9309:4;9301:6;9297:17;9285:29;;9363:3;9355:4;9347:6;9343:17;9333:8;9329:32;9326:41;9323:128;;;9370:79;;:::i;:::-;9323:128;8904:553;;;;;:::o;9463:529::-;9534:6;9542;9591:2;9579:9;9570:7;9566:23;9562:32;9559:119;;;9597:79;;:::i;:::-;9559:119;9745:1;9734:9;9730:17;9717:31;9775:18;9767:6;9764:30;9761:117;;;9797:79;;:::i;:::-;9761:117;9910:65;9967:7;9958:6;9947:9;9943:22;9910:65;:::i;:::-;9892:83;;;;9688:297;9463:529;;;;;:::o;9998:329::-;10057:6;10106:2;10094:9;10085:7;10081:23;10077:32;10074:119;;;10112:79;;:::i;:::-;10074:119;10232:1;10257:53;10302:7;10293:6;10282:9;10278:22;10257:53;:::i;:::-;10247:63;;10203:117;9998:329;;;;:::o;10350:568::-;10423:8;10433:6;10483:3;10476:4;10468:6;10464:17;10460:27;10450:122;;10491:79;;:::i;:::-;10450:122;10604:6;10591:20;10581:30;;10634:18;10626:6;10623:30;10620:117;;;10656:79;;:::i;:::-;10620:117;10770:4;10762:6;10758:17;10746:29;;10824:3;10816:4;10808:6;10804:17;10794:8;10790:32;10787:41;10784:128;;;10831:79;;:::i;:::-;10784:128;10350:568;;;;;:::o;10924:559::-;11010:6;11018;11067:2;11055:9;11046:7;11042:23;11038:32;11035:119;;;11073:79;;:::i;:::-;11035:119;11221:1;11210:9;11206:17;11193:31;11251:18;11243:6;11240:30;11237:117;;;11273:79;;:::i;:::-;11237:117;11386:80;11458:7;11449:6;11438:9;11434:22;11386:80;:::i;:::-;11368:98;;;;11164:312;10924:559;;;;;:::o;11489:146::-;11588:6;11622:5;11616:12;11606:22;;11489:146;;;:::o;11641:216::-;11772:11;11806:6;11801:3;11794:19;11846:4;11841:3;11837:14;11822:29;;11641:216;;;;:::o;11863:164::-;11962:4;11985:3;11977:11;;12015:4;12010:3;12006:14;11998:22;;11863:164;;;:::o;12033:108::-;12110:24;12128:5;12110:24;:::i;:::-;12105:3;12098:37;12033:108;;:::o;12147:101::-;12183:7;12223:18;12216:5;12212:30;12201:41;;12147:101;;;:::o;12254:105::-;12329:23;12346:5;12329:23;:::i;:::-;12324:3;12317:36;12254:105;;:::o;12365:99::-;12436:21;12451:5;12436:21;:::i;:::-;12431:3;12424:34;12365:99;;:::o;12470:91::-;12506:7;12546:8;12539:5;12535:20;12524:31;;12470:91;;;:::o;12567:105::-;12642:23;12659:5;12642:23;:::i;:::-;12637:3;12630:36;12567:105;;:::o;12750:866::-;12901:4;12896:3;12892:14;12988:4;12981:5;12977:16;12971:23;13007:63;13064:4;13059:3;13055:14;13041:12;13007:63;:::i;:::-;12916:164;13172:4;13165:5;13161:16;13155:23;13191:61;13246:4;13241:3;13237:14;13223:12;13191:61;:::i;:::-;13090:172;13346:4;13339:5;13335:16;13329:23;13365:57;13416:4;13411:3;13407:14;13393:12;13365:57;:::i;:::-;13272:160;13519:4;13512:5;13508:16;13502:23;13538:61;13593:4;13588:3;13584:14;13570:12;13538:61;:::i;:::-;13442:167;12870:746;12750:866;;:::o;13622:307::-;13755:10;13776:110;13882:3;13874:6;13776:110;:::i;:::-;13918:4;13913:3;13909:14;13895:28;;13622:307;;;;:::o;13935:145::-;14037:4;14069;14064:3;14060:14;14052:22;;13935:145;;;:::o;14162:988::-;14345:3;14374:86;14454:5;14374:86;:::i;:::-;14476:118;14587:6;14582:3;14476:118;:::i;:::-;14469:125;;14618:88;14700:5;14618:88;:::i;:::-;14729:7;14760:1;14745:380;14770:6;14767:1;14764:13;14745:380;;;14846:6;14840:13;14873:127;14996:3;14981:13;14873:127;:::i;:::-;14866:134;;15023:92;15108:6;15023:92;:::i;:::-;15013:102;;14805:320;14792:1;14789;14785:9;14780:14;;14745:380;;;14749:14;15141:3;15134:10;;14350:800;;;14162:988;;;;:::o;15156:501::-;15363:4;15401:2;15390:9;15386:18;15378:26;;15450:9;15444:4;15440:20;15436:1;15425:9;15421:17;15414:47;15478:172;15645:4;15636:6;15478:172;:::i;:::-;15470:180;;15156:501;;;;:::o;15680:568::-;15753:8;15763:6;15813:3;15806:4;15798:6;15794:17;15790:27;15780:122;;15821:79;;:::i;:::-;15780:122;15934:6;15921:20;15911:30;;15964:18;15956:6;15953:30;15950:117;;;15986:79;;:::i;:::-;15950:117;16100:4;16092:6;16088:17;16076:29;;16154:3;16146:4;16138:6;16134:17;16124:8;16120:32;16117:41;16114:128;;;16161:79;;:::i;:::-;16114:128;15680:568;;;;;:::o;16254:875::-;16371:6;16379;16387;16395;16444:2;16432:9;16423:7;16419:23;16415:32;16412:119;;;16450:79;;:::i;:::-;16412:119;16570:1;16595:66;16653:7;16644:6;16633:9;16629:22;16595:66;:::i;:::-;16585:76;;16541:130;16738:2;16727:9;16723:18;16710:32;16769:18;16761:6;16758:30;16755:117;;;16791:79;;:::i;:::-;16755:117;16904:80;16976:7;16967:6;16956:9;16952:22;16904:80;:::i;:::-;16886:98;;;;16681:313;17033:2;17059:53;17104:7;17095:6;17084:9;17080:22;17059:53;:::i;:::-;17049:63;;17004:118;16254:875;;;;;;;:::o;17135:93::-;17171:7;17211:10;17204:5;17200:22;17189:33;;17135:93;;;:::o;17234:120::-;17306:23;17323:5;17306:23;:::i;:::-;17299:5;17296:34;17286:62;;17344:1;17341;17334:12;17286:62;17234:120;:::o;17360:137::-;17405:5;17443:6;17430:20;17421:29;;17459:32;17485:5;17459:32;:::i;:::-;17360:137;;;;:::o;17503:327::-;17561:6;17610:2;17598:9;17589:7;17585:23;17581:32;17578:119;;;17616:79;;:::i;:::-;17578:119;17736:1;17761:52;17805:7;17796:6;17785:9;17781:22;17761:52;:::i;:::-;17751:62;;17707:116;17503:327;;;;:::o;17836:115::-;17921:23;17938:5;17921:23;:::i;:::-;17916:3;17909:36;17836:115;;:::o;17957:218::-;18048:4;18086:2;18075:9;18071:18;18063:26;;18099:69;18165:1;18154:9;18150:17;18141:6;18099:69;:::i;:::-;17957:218;;;;:::o;18181:114::-;18248:6;18282:5;18276:12;18266:22;;18181:114;;;:::o;18301:184::-;18400:11;18434:6;18429:3;18422:19;18474:4;18469:3;18465:14;18450:29;;18301:184;;;;:::o;18491:132::-;18558:4;18581:3;18573:11;;18611:4;18606:3;18602:14;18594:22;;18491:132;;;:::o;18629:108::-;18706:24;18724:5;18706:24;:::i;:::-;18701:3;18694:37;18629:108;;:::o;18743:179::-;18812:10;18833:46;18875:3;18867:6;18833:46;:::i;:::-;18911:4;18906:3;18902:14;18888:28;;18743:179;;;;:::o;18928:113::-;18998:4;19030;19025:3;19021:14;19013:22;;18928:113;;;:::o;19077:732::-;19196:3;19225:54;19273:5;19225:54;:::i;:::-;19295:86;19374:6;19369:3;19295:86;:::i;:::-;19288:93;;19405:56;19455:5;19405:56;:::i;:::-;19484:7;19515:1;19500:284;19525:6;19522:1;19519:13;19500:284;;;19601:6;19595:13;19628:63;19687:3;19672:13;19628:63;:::i;:::-;19621:70;;19714:60;19767:6;19714:60;:::i;:::-;19704:70;;19560:224;19547:1;19544;19540:9;19535:14;;19500:284;;;19504:14;19800:3;19793:10;;19201:608;;;19077:732;;;;:::o;19815:373::-;19958:4;19996:2;19985:9;19981:18;19973:26;;20045:9;20039:4;20035:20;20031:1;20020:9;20016:17;20009:47;20073:108;20176:4;20167:6;20073:108;:::i;:::-;20065:116;;19815:373;;;;:::o;20194:619::-;20271:6;20279;20287;20336:2;20324:9;20315:7;20311:23;20307:32;20304:119;;;20342:79;;:::i;:::-;20304:119;20462:1;20487:53;20532:7;20523:6;20512:9;20508:22;20487:53;:::i;:::-;20477:63;;20433:117;20589:2;20615:53;20660:7;20651:6;20640:9;20636:22;20615:53;:::i;:::-;20605:63;;20560:118;20717:2;20743:53;20788:7;20779:6;20768:9;20764:22;20743:53;:::i;:::-;20733:63;;20688:118;20194:619;;;;;:::o;20832:552::-;20889:8;20899:6;20949:3;20942:4;20934:6;20930:17;20926:27;20916:122;;20957:79;;:::i;:::-;20916:122;21070:6;21057:20;21047:30;;21100:18;21092:6;21089:30;21086:117;;;21122:79;;:::i;:::-;21086:117;21236:4;21228:6;21224:17;21212:29;;21290:3;21282:4;21274:6;21270:17;21260:8;21256:32;21253:41;21250:128;;;21297:79;;:::i;:::-;21250:128;20832:552;;;;;:::o;21390:817::-;21478:6;21486;21494;21502;21551:2;21539:9;21530:7;21526:23;21522:32;21519:119;;;21557:79;;:::i;:::-;21519:119;21677:1;21702:53;21747:7;21738:6;21727:9;21723:22;21702:53;:::i;:::-;21692:63;;21648:117;21804:2;21830:53;21875:7;21866:6;21855:9;21851:22;21830:53;:::i;:::-;21820:63;;21775:118;21960:2;21949:9;21945:18;21932:32;21991:18;21983:6;21980:30;21977:117;;;22013:79;;:::i;:::-;21977:117;22126:64;22182:7;22173:6;22162:9;22158:22;22126:64;:::i;:::-;22108:82;;;;21903:297;21390:817;;;;;;;:::o;22213:116::-;22283:21;22298:5;22283:21;:::i;:::-;22276:5;22273:32;22263:60;;22319:1;22316;22309:12;22263:60;22213:116;:::o;22335:133::-;22378:5;22416:6;22403:20;22394:29;;22432:30;22456:5;22432:30;:::i;:::-;22335:133;;;;:::o;22474:468::-;22539:6;22547;22596:2;22584:9;22575:7;22571:23;22567:32;22564:119;;;22602:79;;:::i;:::-;22564:119;22722:1;22747:53;22792:7;22783:6;22772:9;22768:22;22747:53;:::i;:::-;22737:63;;22693:117;22849:2;22875:50;22917:7;22908:6;22897:9;22893:22;22875:50;:::i;:::-;22865:60;;22820:115;22474:468;;;;;:::o;22948:118::-;23035:24;23053:5;23035:24;:::i;:::-;23030:3;23023:37;22948:118;;:::o;23072:222::-;23165:4;23203:2;23192:9;23188:18;23180:26;;23216:71;23284:1;23273:9;23269:17;23260:6;23216:71;:::i;:::-;23072:222;;;;:::o;23300:355::-;23372:6;23421:2;23409:9;23400:7;23396:23;23392:32;23389:119;;;23427:79;;:::i;:::-;23389:119;23547:1;23572:66;23630:7;23621:6;23610:9;23606:22;23572:66;:::i;:::-;23562:76;;23518:130;23300:355;;;;:::o;23661:89::-;23697:7;23737:6;23730:5;23726:18;23715:29;;23661:89;;;:::o;23756:115::-;23841:23;23858:5;23841:23;:::i;:::-;23836:3;23829:36;23756:115;;:::o;23877:218::-;23968:4;24006:2;23995:9;23991:18;23983:26;;24019:69;24085:1;24074:9;24070:17;24061:6;24019:69;:::i;:::-;23877:218;;;;:::o;24101:117::-;24210:1;24207;24200:12;24224:180;24272:77;24269:1;24262:88;24369:4;24366:1;24359:15;24393:4;24390:1;24383:15;24410:281;24493:27;24515:4;24493:27;:::i;:::-;24485:6;24481:40;24623:6;24611:10;24608:22;24587:18;24575:10;24572:34;24569:62;24566:88;;;24634:18;;:::i;:::-;24566:88;24674:10;24670:2;24663:22;24453:238;24410:281;;:::o;24697:129::-;24731:6;24758:20;;:::i;:::-;24748:30;;24787:33;24815:4;24807:6;24787:33;:::i;:::-;24697:129;;;:::o;24832:307::-;24893:4;24983:18;24975:6;24972:30;24969:56;;;25005:18;;:::i;:::-;24969:56;25043:29;25065:6;25043:29;:::i;:::-;25035:37;;25127:4;25121;25117:15;25109:23;;24832:307;;;:::o;25145:146::-;25242:6;25237:3;25232;25219:30;25283:1;25274:6;25269:3;25265:16;25258:27;25145:146;;;:::o;25297:423::-;25374:5;25399:65;25415:48;25456:6;25415:48;:::i;:::-;25399:65;:::i;:::-;25390:74;;25487:6;25480:5;25473:21;25525:4;25518:5;25514:16;25563:3;25554:6;25549:3;25545:16;25542:25;25539:112;;;25570:79;;:::i;:::-;25539:112;25660:54;25707:6;25702:3;25697;25660:54;:::i;:::-;25380:340;25297:423;;;;;:::o;25739:338::-;25794:5;25843:3;25836:4;25828:6;25824:17;25820:27;25810:122;;25851:79;;:::i;:::-;25810:122;25968:6;25955:20;25993:78;26067:3;26059:6;26052:4;26044:6;26040:17;25993:78;:::i;:::-;25984:87;;25800:277;25739:338;;;;:::o;26083:943::-;26178:6;26186;26194;26202;26251:3;26239:9;26230:7;26226:23;26222:33;26219:120;;;26258:79;;:::i;:::-;26219:120;26378:1;26403:53;26448:7;26439:6;26428:9;26424:22;26403:53;:::i;:::-;26393:63;;26349:117;26505:2;26531:53;26576:7;26567:6;26556:9;26552:22;26531:53;:::i;:::-;26521:63;;26476:118;26633:2;26659:53;26704:7;26695:6;26684:9;26680:22;26659:53;:::i;:::-;26649:63;;26604:118;26789:2;26778:9;26774:18;26761:32;26820:18;26812:6;26809:30;26806:117;;;26842:79;;:::i;:::-;26806:117;26947:62;27001:7;26992:6;26981:9;26977:22;26947:62;:::i;:::-;26937:72;;26732:287;26083:943;;;;;;;:::o;27104:876::-;27265:4;27260:3;27256:14;27352:4;27345:5;27341:16;27335:23;27371:63;27428:4;27423:3;27419:14;27405:12;27371:63;:::i;:::-;27280:164;27536:4;27529:5;27525:16;27519:23;27555:61;27610:4;27605:3;27601:14;27587:12;27555:61;:::i;:::-;27454:172;27710:4;27703:5;27699:16;27693:23;27729:57;27780:4;27775:3;27771:14;27757:12;27729:57;:::i;:::-;27636:160;27883:4;27876:5;27872:16;27866:23;27902:61;27957:4;27952:3;27948:14;27934:12;27902:61;:::i;:::-;27806:167;27234:746;27104:876;;:::o;27986:351::-;28143:4;28181:3;28170:9;28166:19;28158:27;;28195:135;28327:1;28316:9;28312:17;28303:6;28195:135;:::i;:::-;27986:351;;;;:::o;28343:321::-;28430:4;28520:18;28512:6;28509:30;28506:56;;;28542:18;;:::i;:::-;28506:56;28592:4;28584:6;28580:17;28572:25;;28652:4;28646;28642:15;28634:23;;28343:321;;;:::o;28670:308::-;28732:4;28822:18;28814:6;28811:30;28808:56;;;28844:18;;:::i;:::-;28808:56;28882:29;28904:6;28882:29;:::i;:::-;28874:37;;28966:4;28960;28956:15;28948:23;;28670:308;;;:::o;28984:425::-;29062:5;29087:66;29103:49;29145:6;29103:49;:::i;:::-;29087:66;:::i;:::-;29078:75;;29176:6;29169:5;29162:21;29214:4;29207:5;29203:16;29252:3;29243:6;29238:3;29234:16;29231:25;29228:112;;;29259:79;;:::i;:::-;29228:112;29349:54;29396:6;29391:3;29386;29349:54;:::i;:::-;29068:341;28984:425;;;;;:::o;29429:340::-;29485:5;29534:3;29527:4;29519:6;29515:17;29511:27;29501:122;;29542:79;;:::i;:::-;29501:122;29659:6;29646:20;29684:79;29759:3;29751:6;29744:4;29736:6;29732:17;29684:79;:::i;:::-;29675:88;;29491:278;29429:340;;;;:::o;29791:945::-;29897:5;29922:91;29938:74;30005:6;29938:74;:::i;:::-;29922:91;:::i;:::-;29913:100;;30033:5;30062:6;30055:5;30048:21;30096:4;30089:5;30085:16;30078:23;;30149:4;30141:6;30137:17;30129:6;30125:30;30178:3;30170:6;30167:15;30164:122;;;30197:79;;:::i;:::-;30164:122;30312:6;30295:435;30329:6;30324:3;30321:15;30295:435;;;30418:3;30405:17;30454:18;30441:11;30438:35;30435:122;;;30476:79;;:::i;:::-;30435:122;30600:11;30592:6;30588:24;30638:47;30681:3;30669:10;30638:47;:::i;:::-;30633:3;30626:60;30715:4;30710:3;30706:14;30699:21;;30371:359;;30355:4;30350:3;30346:14;30339:21;;30295:435;;;30299:21;29903:833;;29791:945;;;;;:::o;30758:390::-;30839:5;30888:3;30881:4;30873:6;30869:17;30865:27;30855:122;;30896:79;;:::i;:::-;30855:122;31013:6;31000:20;31038:104;31138:3;31130:6;31123:4;31115:6;31111:17;31038:104;:::i;:::-;31029:113;;30845:303;30758:390;;;;:::o;31154:559::-;31248:6;31297:2;31285:9;31276:7;31272:23;31268:32;31265:119;;;31303:79;;:::i;:::-;31265:119;31451:1;31440:9;31436:17;31423:31;31481:18;31473:6;31470:30;31467:117;;;31503:79;;:::i;:::-;31467:117;31608:88;31688:7;31679:6;31668:9;31664:22;31608:88;:::i;:::-;31598:98;;31394:312;31154:559;;;;:::o;31719:474::-;31787:6;31795;31844:2;31832:9;31823:7;31819:23;31815:32;31812:119;;;31850:79;;:::i;:::-;31812:119;31970:1;31995:53;32040:7;32031:6;32020:9;32016:22;31995:53;:::i;:::-;31985:63;;31941:117;32097:2;32123:53;32168:7;32159:6;32148:9;32144:22;32123:53;:::i;:::-;32113:63;;32068:118;31719:474;;;;;:::o;32199:180::-;32247:77;32244:1;32237:88;32344:4;32341:1;32334:15;32368:4;32365:1;32358:15;32385:320;32429:6;32466:1;32460:4;32456:12;32446:22;;32513:1;32507:4;32503:12;32534:18;32524:81;;32590:4;32582:6;32578:17;32568:27;;32524:81;32652:2;32644:6;32641:14;32621:18;32618:38;32615:84;;32671:18;;:::i;:::-;32615:84;32436:269;32385:320;;;:::o;32711:165::-;32851:17;32847:1;32839:6;32835:14;32828:41;32711:165;:::o;32882:366::-;33024:3;33045:67;33109:2;33104:3;33045:67;:::i;:::-;33038:74;;33121:93;33210:3;33121:93;:::i;:::-;33239:2;33234:3;33230:12;33223:19;;32882:366;;;:::o;33254:419::-;33420:4;33458:2;33447:9;33443:18;33435:26;;33507:9;33501:4;33497:20;33493:1;33482:9;33478:17;33471:47;33535:131;33661:4;33535:131;:::i;:::-;33527:139;;33254:419;;;:::o;33679:180::-;33727:77;33724:1;33717:88;33824:4;33821:1;33814:15;33848:4;33845:1;33838:15;33865:180;33913:77;33910:1;33903:88;34010:4;34007:1;34000:15;34034:4;34031:1;34024:15;34051:193;34090:3;34109:19;34126:1;34109:19;:::i;:::-;34104:24;;34142:19;34159:1;34142:19;:::i;:::-;34137:24;;34184:1;34181;34177:9;34170:16;;34207:6;34202:3;34199:15;34196:41;;;34217:18;;:::i;:::-;34196:41;34051:193;;;;:::o;34250:168::-;34390:20;34386:1;34378:6;34374:14;34367:44;34250:168;:::o;34424:366::-;34566:3;34587:67;34651:2;34646:3;34587:67;:::i;:::-;34580:74;;34663:93;34752:3;34663:93;:::i;:::-;34781:2;34776:3;34772:12;34765:19;;34424:366;;;:::o;34796:419::-;34962:4;35000:2;34989:9;34985:18;34977:26;;35049:9;35043:4;35039:20;35035:1;35024:9;35020:17;35013:47;35077:131;35203:4;35077:131;:::i;:::-;35069:139;;34796:419;;;:::o;35221:181::-;35361:33;35357:1;35349:6;35345:14;35338:57;35221:181;:::o;35408:366::-;35550:3;35571:67;35635:2;35630:3;35571:67;:::i;:::-;35564:74;;35647:93;35736:3;35647:93;:::i;:::-;35765:2;35760:3;35756:12;35749:19;;35408:366;;;:::o;35780:419::-;35946:4;35984:2;35973:9;35969:18;35961:26;;36033:9;36027:4;36023:20;36019:1;36008:9;36004:17;35997:47;36061:131;36187:4;36061:131;:::i;:::-;36053:139;;35780:419;;;:::o;36205:410::-;36245:7;36268:20;36286:1;36268:20;:::i;:::-;36263:25;;36302:20;36320:1;36302:20;:::i;:::-;36297:25;;36357:1;36354;36350:9;36379:30;36397:11;36379:30;:::i;:::-;36368:41;;36558:1;36549:7;36545:15;36542:1;36539:22;36519:1;36512:9;36492:83;36469:139;;36588:18;;:::i;:::-;36469:139;36253:362;36205:410;;;;:::o;36621:170::-;36761:22;36757:1;36749:6;36745:14;36738:46;36621:170;:::o;36797:366::-;36939:3;36960:67;37024:2;37019:3;36960:67;:::i;:::-;36953:74;;37036:93;37125:3;37036:93;:::i;:::-;37154:2;37149:3;37145:12;37138:19;;36797:366;;;:::o;37169:419::-;37335:4;37373:2;37362:9;37358:18;37350:26;;37422:9;37416:4;37412:20;37408:1;37397:9;37393:17;37386:47;37450:131;37576:4;37450:131;:::i;:::-;37442:139;;37169:419;;;:::o;37594:112::-;37677:22;37693:5;37677:22;:::i;:::-;37672:3;37665:35;37594:112;;:::o;37712:426::-;37853:4;37891:2;37880:9;37876:18;37868:26;;37904:71;37972:1;37961:9;37957:17;37948:6;37904:71;:::i;:::-;37985:68;38049:2;38038:9;38034:18;38025:6;37985:68;:::i;:::-;38063;38127:2;38116:9;38112:18;38103:6;38063:68;:::i;:::-;37712:426;;;;;;:::o;38144:97::-;38203:6;38231:3;38221:13;;38144:97;;;;:::o;38247:141::-;38296:4;38319:3;38311:11;;38342:3;38339:1;38332:14;38376:4;38373:1;38363:18;38355:26;;38247:141;;;:::o;38394:93::-;38431:6;38478:2;38473;38466:5;38462:14;38458:23;38448:33;;38394:93;;;:::o;38493:107::-;38537:8;38587:5;38581:4;38577:16;38556:37;;38493:107;;;;:::o;38606:393::-;38675:6;38725:1;38713:10;38709:18;38748:97;38778:66;38767:9;38748:97;:::i;:::-;38866:39;38896:8;38885:9;38866:39;:::i;:::-;38854:51;;38938:4;38934:9;38927:5;38923:21;38914:30;;38987:4;38977:8;38973:19;38966:5;38963:30;38953:40;;38682:317;;38606:393;;;;;:::o;39005:60::-;39033:3;39054:5;39047:12;;39005:60;;;:::o;39071:142::-;39121:9;39154:53;39172:34;39181:24;39199:5;39181:24;:::i;:::-;39172:34;:::i;:::-;39154:53;:::i;:::-;39141:66;;39071:142;;;:::o;39219:75::-;39262:3;39283:5;39276:12;;39219:75;;;:::o;39300:269::-;39410:39;39441:7;39410:39;:::i;:::-;39471:91;39520:41;39544:16;39520:41;:::i;:::-;39512:6;39505:4;39499:11;39471:91;:::i;:::-;39465:4;39458:105;39376:193;39300:269;;;:::o;39575:73::-;39620:3;39575:73;:::o;39654:189::-;39731:32;;:::i;:::-;39772:65;39830:6;39822;39816:4;39772:65;:::i;:::-;39707:136;39654:189;;:::o;39849:186::-;39909:120;39926:3;39919:5;39916:14;39909:120;;;39980:39;40017:1;40010:5;39980:39;:::i;:::-;39953:1;39946:5;39942:13;39933:22;;39909:120;;;39849:186;;:::o;40041:543::-;40142:2;40137:3;40134:11;40131:446;;;40176:38;40208:5;40176:38;:::i;:::-;40260:29;40278:10;40260:29;:::i;:::-;40250:8;40246:44;40443:2;40431:10;40428:18;40425:49;;;40464:8;40449:23;;40425:49;40487:80;40543:22;40561:3;40543:22;:::i;:::-;40533:8;40529:37;40516:11;40487:80;:::i;:::-;40146:431;;40131:446;40041:543;;;:::o;40590:117::-;40644:8;40694:5;40688:4;40684:16;40663:37;;40590:117;;;;:::o;40713:169::-;40757:6;40790:51;40838:1;40834:6;40826:5;40823:1;40819:13;40790:51;:::i;:::-;40786:56;40871:4;40865;40861:15;40851:25;;40764:118;40713:169;;;;:::o;40887:295::-;40963:4;41109:29;41134:3;41128:4;41109:29;:::i;:::-;41101:37;;41171:3;41168:1;41164:11;41158:4;41155:21;41147:29;;40887:295;;;;:::o;41187:1403::-;41311:44;41351:3;41346;41311:44;:::i;:::-;41420:18;41412:6;41409:30;41406:56;;;41442:18;;:::i;:::-;41406:56;41486:38;41518:4;41512:11;41486:38;:::i;:::-;41571:67;41631:6;41623;41617:4;41571:67;:::i;:::-;41665:1;41694:2;41686:6;41683:14;41711:1;41706:632;;;;42382:1;42399:6;42396:84;;;42455:9;42450:3;42446:19;42433:33;42424:42;;42396:84;42506:67;42566:6;42559:5;42506:67;:::i;:::-;42500:4;42493:81;42355:229;41676:908;;41706:632;41758:4;41754:9;41746:6;41742:22;41792:37;41824:4;41792:37;:::i;:::-;41851:1;41865:215;41879:7;41876:1;41873:14;41865:215;;;41965:9;41960:3;41956:19;41943:33;41935:6;41928:49;42016:1;42008:6;42004:14;41994:24;;42063:2;42052:9;42048:18;42035:31;;41902:4;41899:1;41895:12;41890:17;;41865:215;;;42108:6;42099:7;42096:19;42093:186;;;42173:9;42168:3;42164:19;42151:33;42216:48;42258:4;42250:6;42246:17;42235:9;42216:48;:::i;:::-;42208:6;42201:64;42116:163;42093:186;42325:1;42321;42313:6;42309:14;42305:22;42299:4;42292:36;41713:625;;;41676:908;;41286:1304;;;41187:1403;;;:::o;42596:161::-;42736:13;42732:1;42724:6;42720:14;42713:37;42596:161;:::o;42763:366::-;42905:3;42926:67;42990:2;42985:3;42926:67;:::i;:::-;42919:74;;43002:93;43091:3;43002:93;:::i;:::-;43120:2;43115:3;43111:12;43104:19;;42763:366;;;:::o;43135:419::-;43301:4;43339:2;43328:9;43324:18;43316:26;;43388:9;43382:4;43378:20;43374:1;43363:9;43359:17;43352:47;43416:131;43542:4;43416:131;:::i;:::-;43408:139;;43135:419;;;:::o;43560:164::-;43700:16;43696:1;43688:6;43684:14;43677:40;43560:164;:::o;43730:366::-;43872:3;43893:67;43957:2;43952:3;43893:67;:::i;:::-;43886:74;;43969:93;44058:3;43969:93;:::i;:::-;44087:2;44082:3;44078:12;44071:19;;43730:366;;;:::o;44102:419::-;44268:4;44306:2;44295:9;44291:18;44283:26;;44355:9;44349:4;44345:20;44341:1;44330:9;44326:17;44319:47;44383:131;44509:4;44383:131;:::i;:::-;44375:139;;44102:419;;;:::o;44527:94::-;44560:8;44608:5;44604:2;44600:14;44579:35;;44527:94;;;:::o;44627:::-;44666:7;44695:20;44709:5;44695:20;:::i;:::-;44684:31;;44627:94;;;:::o;44727:100::-;44766:7;44795:26;44815:5;44795:26;:::i;:::-;44784:37;;44727:100;;;:::o;44833:157::-;44938:45;44958:24;44976:5;44958:24;:::i;:::-;44938:45;:::i;:::-;44933:3;44926:58;44833:157;;:::o;44996:256::-;45108:3;45123:75;45194:3;45185:6;45123:75;:::i;:::-;45223:2;45218:3;45214:12;45207:19;;45243:3;45236:10;;44996:256;;;;:::o;45258:170::-;45398:22;45394:1;45386:6;45382:14;45375:46;45258:170;:::o;45434:366::-;45576:3;45597:67;45661:2;45656:3;45597:67;:::i;:::-;45590:74;;45673:93;45762:3;45673:93;:::i;:::-;45791:2;45786:3;45782:12;45775:19;;45434:366;;;:::o;45806:419::-;45972:4;46010:2;45999:9;45995:18;45987:26;;46059:9;46053:4;46049:20;46045:1;46034:9;46030:17;46023:47;46087:131;46213:4;46087:131;:::i;:::-;46079:139;;45806:419;;;:::o;46231:85::-;46276:7;46305:5;46294:16;;46231:85;;;:::o;46322:154::-;46378:9;46411:59;46427:42;46436:32;46462:5;46436:32;:::i;:::-;46427:42;:::i;:::-;46411:59;:::i;:::-;46398:72;;46322:154;;;:::o;46482:143::-;46575:43;46612:5;46575:43;:::i;:::-;46570:3;46563:56;46482:143;;:::o;46631:446::-;46782:4;46820:2;46809:9;46805:18;46797:26;;46833:71;46901:1;46890:9;46886:17;46877:6;46833:71;:::i;:::-;46914:68;46978:2;46967:9;46963:18;46954:6;46914:68;:::i;:::-;46992:78;47066:2;47055:9;47051:18;47042:6;46992:78;:::i;:::-;46631:446;;;;;;:::o;47083:171::-;47121:3;47144:23;47161:5;47144:23;:::i;:::-;47135:32;;47189:6;47182:5;47179:17;47176:43;;47199:18;;:::i;:::-;47176:43;47246:1;47239:5;47235:13;47228:20;;47083:171;;;:::o;47260:79::-;47299:7;47328:5;47317:16;;47260:79;;;:::o;47345:157::-;47450:45;47470:24;47488:5;47470:24;:::i;:::-;47450:45;:::i;:::-;47445:3;47438:58;47345:157;;:::o;47508:79::-;47547:7;47576:5;47565:16;;47508:79;;;:::o;47593:157::-;47698:45;47718:24;47736:5;47718:24;:::i;:::-;47698:45;:::i;:::-;47693:3;47686:58;47593:157;;:::o;47756:538::-;47924:3;47939:75;48010:3;48001:6;47939:75;:::i;:::-;48039:2;48034:3;48030:12;48023:19;;48052:75;48123:3;48114:6;48052:75;:::i;:::-;48152:2;48147:3;48143:12;48136:19;;48165:75;48236:3;48227:6;48165:75;:::i;:::-;48265:2;48260:3;48256:12;48249:19;;48285:3;48278:10;;47756:538;;;;;;:::o;48300:164::-;48440:16;48436:1;48428:6;48424:14;48417:40;48300:164;:::o;48470:366::-;48612:3;48633:67;48697:2;48692:3;48633:67;:::i;:::-;48626:74;;48709:93;48798:3;48709:93;:::i;:::-;48827:2;48822:3;48818:12;48811:19;;48470:366;;;:::o;48842:419::-;49008:4;49046:2;49035:9;49031:18;49023:26;;49095:9;49089:4;49085:20;49081:1;49070:9;49066:17;49059:47;49123:131;49249:4;49123:131;:::i;:::-;49115:139;;48842:419;;;:::o;49267:225::-;49407:34;49403:1;49395:6;49391:14;49384:58;49476:8;49471:2;49463:6;49459:15;49452:33;49267:225;:::o;49498:366::-;49640:3;49661:67;49725:2;49720:3;49661:67;:::i;:::-;49654:74;;49737:93;49826:3;49737:93;:::i;:::-;49855:2;49850:3;49846:12;49839:19;;49498:366;;;:::o;49870:419::-;50036:4;50074:2;50063:9;50059:18;50051:26;;50123:9;50117:4;50113:20;50109:1;50098:9;50094:17;50087:47;50151:131;50277:4;50151:131;:::i;:::-;50143:139;;49870:419;;;:::o;50295:182::-;50435:34;50431:1;50423:6;50419:14;50412:58;50295:182;:::o;50483:366::-;50625:3;50646:67;50710:2;50705:3;50646:67;:::i;:::-;50639:74;;50722:93;50811:3;50722:93;:::i;:::-;50840:2;50835:3;50831:12;50824:19;;50483:366;;;:::o;50855:419::-;51021:4;51059:2;51048:9;51044:18;51036:26;;51108:9;51102:4;51098:20;51094:1;51083:9;51079:17;51072:47;51136:131;51262:4;51136:131;:::i;:::-;51128:139;;50855:419;;;:::o;51280:98::-;51331:6;51365:5;51359:12;51349:22;;51280:98;;;:::o;51384:168::-;51467:11;51501:6;51496:3;51489:19;51541:4;51536:3;51532:14;51517:29;;51384:168;;;;:::o;51558:373::-;51644:3;51672:38;51704:5;51672:38;:::i;:::-;51726:70;51789:6;51784:3;51726:70;:::i;:::-;51719:77;;51805:65;51863:6;51858:3;51851:4;51844:5;51840:16;51805:65;:::i;:::-;51895:29;51917:6;51895:29;:::i;:::-;51890:3;51886:39;51879:46;;51648:283;51558:373;;;;:::o;51937:640::-;52132:4;52170:3;52159:9;52155:19;52147:27;;52184:71;52252:1;52241:9;52237:17;52228:6;52184:71;:::i;:::-;52265:72;52333:2;52322:9;52318:18;52309:6;52265:72;:::i;:::-;52347;52415:2;52404:9;52400:18;52391:6;52347:72;:::i;:::-;52466:9;52460:4;52456:20;52451:2;52440:9;52436:18;52429:48;52494:76;52565:4;52556:6;52494:76;:::i;:::-;52486:84;;51937:640;;;;;;;:::o;52583:141::-;52639:5;52670:6;52664:13;52655:22;;52686:32;52712:5;52686:32;:::i;:::-;52583:141;;;;:::o;52730:349::-;52799:6;52848:2;52836:9;52827:7;52823:23;52819:32;52816:119;;;52854:79;;:::i;:::-;52816:119;52974:1;52999:63;53054:7;53045:6;53034:9;53030:22;52999:63;:::i;:::-;52989:73;;52945:127;52730:349;;;;:::o;53085:148::-;53187:11;53224:3;53209:18;;53085:148;;;;:::o;53239:390::-;53345:3;53373:39;53406:5;53373:39;:::i;:::-;53428:89;53510:6;53505:3;53428:89;:::i;:::-;53421:96;;53526:65;53584:6;53579:3;53572:4;53565:5;53561:16;53526:65;:::i;:::-;53616:6;53611:3;53607:16;53600:23;;53349:280;53239:390;;;;:::o;53635:435::-;53815:3;53837:95;53928:3;53919:6;53837:95;:::i;:::-;53830:102;;53949:95;54040:3;54031:6;53949:95;:::i;:::-;53942:102;;54061:3;54054:10;;53635:435;;;;;:::o;54076:233::-;54115:3;54138:24;54156:5;54138:24;:::i;:::-;54129:33;;54184:66;54177:5;54174:77;54171:103;;54254:18;;:::i;:::-;54171:103;54301:1;54294:5;54290:13;54283:20;;54076:233;;;:::o;54315:174::-;54455:26;54451:1;54443:6;54439:14;54432:50;54315:174;:::o;54495:366::-;54637:3;54658:67;54722:2;54717:3;54658:67;:::i;:::-;54651:74;;54734:93;54823:3;54734:93;:::i;:::-;54852:2;54847:3;54843:12;54836:19;;54495:366;;;:::o;54867:419::-;55033:4;55071:2;55060:9;55056:18;55048:26;;55120:9;55114:4;55110:20;55106:1;55095:9;55091:17;55084:47;55148:131;55274:4;55148:131;:::i;:::-;55140:139;;54867:419;;;:::o;55292:181::-;55432:33;55428:1;55420:6;55416:14;55409:57;55292:181;:::o;55479:366::-;55621:3;55642:67;55706:2;55701:3;55642:67;:::i;:::-;55635:74;;55718:93;55807:3;55718:93;:::i;:::-;55836:2;55831:3;55827:12;55820:19;;55479:366;;;:::o;55851:419::-;56017:4;56055:2;56044:9;56040:18;56032:26;;56104:9;56098:4;56094:20;56090:1;56079:9;56075:17;56068:47;56132:131;56258:4;56132:131;:::i;:::-;56124:139;;55851:419;;;:::o;56276:221::-;56416:34;56412:1;56404:6;56400:14;56393:58;56485:4;56480:2;56472:6;56468:15;56461:29;56276:221;:::o;56503:366::-;56645:3;56666:67;56730:2;56725:3;56666:67;:::i;:::-;56659:74;;56742:93;56831:3;56742:93;:::i;:::-;56860:2;56855:3;56851:12;56844:19;;56503:366;;;:::o;56875:419::-;57041:4;57079:2;57068:9;57064:18;57056:26;;57128:9;57122:4;57118:20;57114:1;57103:9;57099:17;57092:47;57156:131;57282:4;57156:131;:::i;:::-;57148:139;;56875:419;;;:::o;57300:545::-;57473:4;57511:3;57500:9;57496:19;57488:27;;57525:71;57593:1;57582:9;57578:17;57569:6;57525:71;:::i;:::-;57606:68;57670:2;57659:9;57655:18;57646:6;57606:68;:::i;:::-;57684:72;57752:2;57741:9;57737:18;57728:6;57684:72;:::i;:::-;57766;57834:2;57823:9;57819:18;57810:6;57766:72;:::i;:::-;57300:545;;;;;;;:::o;57851:1395::-;57968:37;58001:3;57968:37;:::i;:::-;58070:18;58062:6;58059:30;58056:56;;;58092:18;;:::i;:::-;58056:56;58136:38;58168:4;58162:11;58136:38;:::i;:::-;58221:67;58281:6;58273;58267:4;58221:67;:::i;:::-;58315:1;58339:4;58326:17;;58371:2;58363:6;58360:14;58388:1;58383:618;;;;59045:1;59062:6;59059:77;;;59111:9;59106:3;59102:19;59096:26;59087:35;;59059:77;59162:67;59222:6;59215:5;59162:67;:::i;:::-;59156:4;59149:81;59018:222;58353:887;;58383:618;58435:4;58431:9;58423:6;58419:22;58469:37;58501:4;58469:37;:::i;:::-;58528:1;58542:208;58556:7;58553:1;58550:14;58542:208;;;58635:9;58630:3;58626:19;58620:26;58612:6;58605:42;58686:1;58678:6;58674:14;58664:24;;58733:2;58722:9;58718:18;58705:31;;58579:4;58576:1;58572:12;58567:17;;58542:208;;;58778:6;58769:7;58766:19;58763:179;;;58836:9;58831:3;58827:19;58821:26;58879:48;58921:4;58913:6;58909:17;58898:9;58879:48;:::i;:::-;58871:6;58864:64;58786:156;58763:179;58988:1;58984;58976:6;58972:14;58968:22;58962:4;58955:36;58390:611;;;58353:887;;57943:1303;;;57851:1395;;:::o

Swarm Source

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