ETH Price: $3,460.93 (+1.85%)
Gas: 8 Gwei

Token

notmafia (NTMF)
 

Overview

Max Total Supply

1,431 NTMF

Holders

1,140

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NTMF
0xb4b1bb4c914d710bf712c25673a1cfcb4dd4238e
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:
NotMafia

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 6 : 4_notmafiatest.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

error MintingClosed();
error AmountNotAvailable();
error WouldExceedMaxPerWallet();
error OnlyUserMint();
error NotWhiteListed();
error ValueNotEqualToPrice();
error NotEnoughBalance();
error AlreadyMintedMaxInPhase();
error NotAllowListed();
error WrongMintFunction();

contract NotMafia is ERC721A, Ownable {
    // The different options of the status of the contract, governs which mint function can be called
    enum Status {
        CLOSED, // 0
        WHITELIST, // 1
        PUBLIC // 2
    }

    Status public status;
    uint256 public price;

    string public baseURI;

    bytes32 public whiteListRoot;

    /**
     * Token id allocation:
     *
     * |  WHITELIST  |  |     FREE      |  |     PAID      |
     * |    1 pw     |  |     1 pw      |  |     3 pw      |
     * [1, ..., 1700 ]  [1701, ..., 2222]  [2223, ..., 4444]
     */
    uint256 private tokenId;
    uint256 private constant TOTAL_WHITELIST_SUPPLY = 1700;
    uint256 private constant TOTAL_FREE_SUPPLY = 2222;
    uint256 private TOTAL_SUPPLY = 4444;
    uint256 private constant MAX_PER_WALLET_PUBLIC = 5;

    mapping(address => bool) private hasMintedWhiteList;
    mapping(address => bool) private hasMintedFree;
    mapping(address => uint256) private hasMintedSale;

    event ChangedStatus(uint256 newStatus);

    // Constructor
    constructor() ERC721A("notmafia", "NTMF") {
        status = Status.CLOSED;
        price = 0.00869 ether;
        tokenId = 1;
    }

    /**
     *  ############## PUBLIC FUNCTIONS ##############
     */

    function ownerMint(uint256 __amount) external onlyOwner {
        // Order should not exceed the total supply
        if (totalSupply() + __amount > TOTAL_SUPPLY) revert AmountNotAvailable();

        // Increment counter
        unchecked {
            tokenId += __amount;
        }

        // Do the magic
        _safeMint(msg.sender, __amount);
    }

    function whiteListMint(bytes32[] calldata __proof) external {
        // Caller cannot be a contract
        if (tx.origin != msg.sender) revert OnlyUserMint();

        // Status should be WHITELIST
        if (status != Status.WHITELIST) revert WrongMintFunction();

        // There should still be WHITELIST supply left to fulfill order
        if (tokenId > TOTAL_WHITELIST_SUPPLY) revert AmountNotAvailable();

        // Caller should be on the WHITELIST
        if (!verifyWhiteList(__proof, whiteListRoot)) revert NotWhiteListed();

        // Caller cannot mint more than one during the WHITELIST phase
        if (hasMintedWhiteList[msg.sender]) revert AlreadyMintedMaxInPhase();

        // Increment counter
        unchecked {
            tokenId += 1;
        }

        // Update: the caller minted during WHITELIST
        hasMintedWhiteList[msg.sender] = true;

        // Do the magic
        _safeMint(msg.sender, 1);
    }

    function publicMint(uint256 __amount) external payable {
        // Caller cannot be a contract
        if (tx.origin != msg.sender) revert OnlyUserMint();

        // Status must be PUBLIC
        if (status != Status.PUBLIC) revert WrongMintFunction();

        // Send the call to the right mint function
        if (tokenId > TOTAL_FREE_SUPPLY) {
            paidMint(__amount);
        } else {
            freeMint();
        }
    }

    /**
     *  ############## OVERRIDING FUNCTIONS ##############
     */

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

    function _startTokenId() internal view virtual override returns (uint256) {
        // The first token that is minted has number #1
        return 1;
    }

    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), ".json")
                )
                : "";
    }

    /**
     *  ############## INTERNAL FUNCTIONS ##############
     */

    function freeMint() internal {
        // Cannot send eth when minting free
        if (msg.value != 0) revert ValueNotEqualToPrice();

        // Caller is not allowed to mint more than one during the FREE phase
        if (hasMintedFree[msg.sender]) revert AlreadyMintedMaxInPhase();

        // Increment counter
        unchecked {
            tokenId += 1;
        }

        // Update: the caller minted during the FREE phase
        hasMintedFree[msg.sender] = true;

        // Do the magic.
        _safeMint(msg.sender, 1);
    }

    function paidMint(uint256 __amount) internal {
        // Msg value must be equal to the cost of the amount of NFT's
        if (msg.value != __amount * price) revert ValueNotEqualToPrice();

        // Cannot mint more than allowed per wallet
        uint256 amountMinted = hasMintedSale[msg.sender];
        if (amountMinted + __amount > MAX_PER_WALLET_PUBLIC)
            revert WouldExceedMaxPerWallet();

        // There must be supply left to fulfill the order
        if (tokenId + __amount > TOTAL_SUPPLY) revert AmountNotAvailable();

        // Increment counter
        unchecked {
            tokenId += __amount;
        }

        // update the amount minted by user
        hasMintedSale[msg.sender] = amountMinted + __amount;

        // Do the magic
        _safeMint(msg.sender, __amount);
    }

    function verifyWhiteList(bytes32[] calldata __proof, bytes32 __root)
        internal
        view
        returns (bool)
    {
        return
            MerkleProof.verify(
                __proof,
                __root,
                keccak256(abi.encodePacked(msg.sender))
            );
    }

    /**
     *  ############## GETTERS -> EXTERNAL ##############
     */

    function getCurrentTokenId() external view returns (uint256) {
        return tokenId;
    }

    function getHasMintedFree(address __address) external view returns (bool) {
        return hasMintedFree[__address];
    }

    function getHasMintedWhiteList(address __address)
        external
        view
        returns (bool)
    {
        return hasMintedWhiteList[__address];
    }

    function getHasMintedSale(address __address)
        external
        view
        returns (uint256)
    {
        return hasMintedSale[__address];
    }

    /**
     *  ############## SETTERS -> ONLY OWNER ##############
     */

    function setStatus(uint256 __status) external onlyOwner {
        status = Status(__status);
        emit ChangedStatus(__status);
    }

    function setBaseURI(string memory __newURI) external onlyOwner {
        baseURI = __newURI;
    }

    function setWhiteListRoot(bytes32 __root) external onlyOwner {
        whiteListRoot = __root;
    }

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

    function setTotalSupply(uint256 __newTotalSupply) external onlyOwner {
        TOTAL_SUPPLY = __newTotalSupply;
    }

    /**
     *  ############## FUNCTIONS -> ONLY OWNER ##############
     */

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

File 2 of 6 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

File 4 of 6 : 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 5 of 6 : 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 6 of 6 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyMintedMaxInPhase","type":"error"},{"inputs":[],"name":"AmountNotAvailable","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotWhiteListed","type":"error"},{"inputs":[],"name":"OnlyUserMint","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"},{"inputs":[],"name":"ValueNotEqualToPrice","type":"error"},{"inputs":[],"name":"WouldExceedMaxPerWallet","type":"error"},{"inputs":[],"name":"WrongMintFunction","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":false,"internalType":"uint256","name":"newStatus","type":"uint256"}],"name":"ChangedStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"__address","type":"address"}],"name":"getHasMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"__address","type":"address"}],"name":"getHasMintedSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"__address","type":"address"}],"name":"getHasMintedWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"__amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"__amount","type":"uint256"}],"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":"__newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__status","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__newTotalSupply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"__root","type":"bytes32"}],"name":"setWhiteListRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum NotMafia.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"__tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"__proof","type":"bytes32[]"}],"name":"whiteListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261115c600d553480156200001757600080fd5b506040518060400160405280600881526020017f6e6f746d616669610000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e544d460000000000000000000000000000000000000000000000000000000081525081600290805190602001906200009c9291906200020f565b508060039080519060200190620000b59291906200020f565b50620000c66200013860201b60201c565b6000819055505050620000ee620000e26200014160201b60201c565b6200014960201b60201c565b6000600860146101000a81548160ff02191690836002811115620001175762000116620002bf565b5b0217905550661edf824b1920006009819055506001600c8190555062000353565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021d906200031d565b90600052602060002090601f0160209004810192826200024157600085556200028d565b82601f106200025c57805160ff19168380011785556200028d565b828001600101855582156200028d579182015b828111156200028c5782518255916020019190600101906200026f565b5b5090506200029c9190620002a0565b5090565b5b80821115620002bb576000816000905550600101620002a1565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033657607f821691505b602082108114156200034d576200034c620002ee565b5b50919050565b61337c80620003636000396000f3fe6080604052600436106101f95760003560e01c806369ba1a751161010d578063a035b1fe116100a0578063e985e9c51161006f578063e985e9c5146106dc578063f19e75d414610719578063f2fde38b14610742578063f524d6cd1461076b578063f7ea7a3d146107a8576101f9565b8063a035b1fe1461062f578063a22cb4651461065a578063b88d4fde14610683578063c87b56dd1461069f576101f9565b80638da5cb5b116100dc5780638da5cb5b1461058757806391b7f5ed146105b257806395d89b41146105db57806397254e5514610606576101f9565b806369ba1a75146104df5780636c0360eb1461050857806370a0823114610533578063715018a614610570576101f9565b8063374bc20b116101905780634d7216901161015f5780634d721690146103e657806355f804b314610423578063561892361461044c5780636352211e1461047757806365f4fd12146104b4576101f9565b8063374bc20b1461034d5780633ccfd60b1461038a57806342842e0e146103a157806345149bb3146103bd576101f9565b806318160ddd116101cc57806318160ddd146102bf578063200d2ed2146102ea57806323b872dd146103155780632db1154414610331576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612686565b6107d1565b60405161023291906126ce565b60405180910390f35b34801561024757600080fd5b50610250610863565b60405161025d9190612782565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906127da565b6108f5565b60405161029a9190612848565b60405180910390f35b6102bd60048036038101906102b8919061288f565b610974565b005b3480156102cb57600080fd5b506102d4610ab8565b6040516102e191906128de565b60405180910390f35b3480156102f657600080fd5b506102ff610acf565b60405161030c9190612970565b60405180910390f35b61032f600480360381019061032a919061298b565b610ae2565b005b61034b600480360381019061034691906127da565b610e07565b005b34801561035957600080fd5b50610374600480360381019061036f91906129de565b610efe565b60405161038191906126ce565b60405180910390f35b34801561039657600080fd5b5061039f610f54565b005b6103bb60048036038101906103b6919061298b565b610fa5565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612a41565b610fc5565b005b3480156103f257600080fd5b5061040d600480360381019061040891906129de565b610fd7565b60405161041a91906128de565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612ba3565b611020565b005b34801561045857600080fd5b50610461611042565b60405161046e91906128de565b60405180910390f35b34801561048357600080fd5b5061049e600480360381019061049991906127da565b61104c565b6040516104ab9190612848565b60405180910390f35b3480156104c057600080fd5b506104c961105e565b6040516104d69190612bfb565b60405180910390f35b3480156104eb57600080fd5b50610506600480360381019061050191906127da565b611064565b005b34801561051457600080fd5b5061051d6110e2565b60405161052a9190612782565b60405180910390f35b34801561053f57600080fd5b5061055a600480360381019061055591906129de565b611170565b60405161056791906128de565b60405180910390f35b34801561057c57600080fd5b50610585611229565b005b34801561059357600080fd5b5061059c61123d565b6040516105a99190612848565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d491906127da565b611267565b005b3480156105e757600080fd5b506105f0611279565b6040516105fd9190612782565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190612c76565b61130b565b005b34801561063b57600080fd5b5061064461155a565b60405161065191906128de565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190612cef565b611560565b005b61069d60048036038101906106989190612dd0565b61166b565b005b3480156106ab57600080fd5b506106c660048036038101906106c191906127da565b6116de565b6040516106d39190612782565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190612e53565b611800565b60405161071091906126ce565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906127da565b611894565b005b34801561074e57600080fd5b50610769600480360381019061076491906129de565b611907565b005b34801561077757600080fd5b50610792600480360381019061078d91906129de565b61198b565b60405161079f91906126ce565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca91906127da565b6119e1565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461087290612ec2565b80601f016020809104026020016040519081016040528092919081815260200182805461089e90612ec2565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b5050505050905090565b6000610900826119f3565b610936576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097f8261104c565b90508073ffffffffffffffffffffffffffffffffffffffff166109a0611a52565b73ffffffffffffffffffffffffffffffffffffffff1614610a03576109cc816109c7611a52565b611800565b610a02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ac2611a5a565b6001546000540303905090565b600860149054906101000a900460ff1681565b6000610aed82611a63565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b54576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6084611b31565b91509150610b768187610b71611a52565b611b58565b610bc257610b8b86610b86611a52565b611800565b610bc1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c29576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c368686866001611b9c565b8015610c4157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0f85610ceb888887611ba2565b7c020000000000000000000000000000000000000000000000000000000017611bca565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d97576000600185019050600060046000838152602001908152602001600020541415610d95576000548114610d94578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dff8686866001611bf5565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e6c576040517f2e75101900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600280811115610e7f57610e7e6128f9565b5b600860149054906101000a900460ff166002811115610ea157610ea06128f9565b5b14610ed8576040517f012cd2e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108ae600c541115610ef257610eed81611bfb565b610efb565b610efa611d81565b5b50565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f5c611eb5565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fa2573d6000803e3d6000fd5b50565b610fc08383836040518060200160405280600081525061166b565b505050565b610fcd611eb5565b80600b8190555050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611028611eb5565b80600a908051906020019061103e929190612577565b5050565b6000600c54905090565b600061105782611a63565b9050919050565b600b5481565b61106c611eb5565b80600281111561107f5761107e6128f9565b5b600860146101000a81548160ff021916908360028111156110a3576110a26128f9565b5b02179055507f3665a8b73cada881fbf8d8433b7d9e7d21c1e53eecf7bb51fb15262d98ee0afb816040516110d791906128de565b60405180910390a150565b600a80546110ef90612ec2565b80601f016020809104026020016040519081016040528092919081815260200182805461111b90612ec2565b80156111685780601f1061113d57610100808354040283529160200191611168565b820191906000526020600020905b81548152906001019060200180831161114b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611231611eb5565b61123b6000611f33565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61126f611eb5565b8060098190555050565b60606003805461128890612ec2565b80601f01602080910402602001604051908101604052809291908181526020018280546112b490612ec2565b80156113015780601f106112d657610100808354040283529160200191611301565b820191906000526020600020905b8154815290600101906020018083116112e457829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611370576040517f2e75101900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60016002811115611384576113836128f9565b5b600860149054906101000a900460ff1660028111156113a6576113a56128f9565b5b146113dd576040517f012cd2e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106a4600c54111561141b576040517f47747fa900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114288282600b54611ff9565b61145e576040517f6a9a57a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114e2576040517f6f5aa9e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600c600082825401925050819055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611556336001612076565b5050565b60095481565b806007600061156d611a52565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661161a611a52565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161165f91906126ce565b60405180910390a35050565b611676848484610ae2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116d8576116a184848484612094565b6116d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116e9826119f3565b61171f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a805461172e90612ec2565b80601f016020809104026020016040519081016040528092919081815260200182805461175a90612ec2565b80156117a75780601f1061177c576101008083540402835291602001916117a7565b820191906000526020600020905b81548152906001019060200180831161178a57829003601f168201915b505050505090506000815114156117cd57604051806020016040528060008152506117f8565b806117d7846121f4565b6040516020016117e8929190612f7c565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61189c611eb5565b600d54816118a8610ab8565b6118b29190612fda565b11156118ea576040517f47747fa900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c600082825401925050819055506119043382612076565b50565b61190f611eb5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611976906130a2565b60405180910390fd5b61198881611f33565b50565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6119e9611eb5565b80600d8190555050565b6000816119fe611a5a565b11158015611a0d575060005482105b8015611a4b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611a72611a5a565b11611afa57600054811015611af95760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611af7575b6000811415611aed576004600083600190039350838152602001908152602001600020549050611ac2565b8092505050611b2c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bb986868461224d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60095481611c0991906130c2565b3414611c41576040517fc534702400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060058282611c939190612fda565b1115611ccb576040517f06f5d75400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d5482600c54611cdc9190612fda565b1115611d14576040517f47747fa900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600c600082825401925050819055508181611d309190612fda565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d7d3383612076565b5050565b60003414611dbb576040517fc534702400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e3f576040517f6f5aa9e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600c600082825401925050819055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611eb3336001612076565b565b611ebd612256565b73ffffffffffffffffffffffffffffffffffffffff16611edb61123d565b73ffffffffffffffffffffffffffffffffffffffff1614611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890613168565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061206d848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050833360405160200161205291906131d0565b6040516020818303038152906040528051906020012061225e565b90509392505050565b612090828260405180602001604052806000815250612275565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120ba611a52565b8786866040518563ffffffff1660e01b81526004016120dc9493929190613240565b602060405180830381600087803b1580156120f657600080fd5b505af192505050801561212757506040513d601f19601f8201168201806040525081019061212491906132a1565b60015b6121a1573d8060008114612157576040519150601f19603f3d011682016040523d82523d6000602084013e61215c565b606091505b50600081511415612199576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391506000825281835b60011561223857600184039350600a81066030018453600a810490508061223357612238565b61220d565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b60008261226b8584612312565b1490509392505050565b61227f8383612368565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461230d57600080549050600083820390505b6122bf6000868380600101945086612094565b6122f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122ac57816000541461230a57600080fd5b50505b505050565b60008082905060005b845181101561235d576123488286838151811061233b5761233a6132ce565b5b6020026020010151612525565b91508080612355906132fd565b91505061231b565b508091505092915050565b60008054905060008214156123a9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123b66000848385611b9c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061242d8361241e6000866000611ba2565b61242785612550565b17611bca565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146124ce57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612493565b50600082141561250a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125206000848385611bf5565b505050565b600081831061253d576125388284612560565b612548565b6125478383612560565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b82805461258390612ec2565b90600052602060002090601f0160209004810192826125a557600085556125ec565b82601f106125be57805160ff19168380011785556125ec565b828001600101855582156125ec579182015b828111156125eb5782518255916020019190600101906125d0565b5b5090506125f991906125fd565b5090565b5b808211156126165760008160009055506001016125fe565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126638161262e565b811461266e57600080fd5b50565b6000813590506126808161265a565b92915050565b60006020828403121561269c5761269b612624565b5b60006126aa84828501612671565b91505092915050565b60008115159050919050565b6126c8816126b3565b82525050565b60006020820190506126e360008301846126bf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612723578082015181840152602081019050612708565b83811115612732576000848401525b50505050565b6000601f19601f8301169050919050565b6000612754826126e9565b61275e81856126f4565b935061276e818560208601612705565b61277781612738565b840191505092915050565b6000602082019050818103600083015261279c8184612749565b905092915050565b6000819050919050565b6127b7816127a4565b81146127c257600080fd5b50565b6000813590506127d4816127ae565b92915050565b6000602082840312156127f0576127ef612624565b5b60006127fe848285016127c5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061283282612807565b9050919050565b61284281612827565b82525050565b600060208201905061285d6000830184612839565b92915050565b61286c81612827565b811461287757600080fd5b50565b60008135905061288981612863565b92915050565b600080604083850312156128a6576128a5612624565b5b60006128b48582860161287a565b92505060206128c5858286016127c5565b9150509250929050565b6128d8816127a4565b82525050565b60006020820190506128f360008301846128cf565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110612939576129386128f9565b5b50565b600081905061294a82612928565b919050565b600061295a8261293c565b9050919050565b61296a8161294f565b82525050565b60006020820190506129856000830184612961565b92915050565b6000806000606084860312156129a4576129a3612624565b5b60006129b28682870161287a565b93505060206129c38682870161287a565b92505060406129d4868287016127c5565b9150509250925092565b6000602082840312156129f4576129f3612624565b5b6000612a028482850161287a565b91505092915050565b6000819050919050565b612a1e81612a0b565b8114612a2957600080fd5b50565b600081359050612a3b81612a15565b92915050565b600060208284031215612a5757612a56612624565b5b6000612a6584828501612a2c565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ab082612738565b810181811067ffffffffffffffff82111715612acf57612ace612a78565b5b80604052505050565b6000612ae261261a565b9050612aee8282612aa7565b919050565b600067ffffffffffffffff821115612b0e57612b0d612a78565b5b612b1782612738565b9050602081019050919050565b82818337600083830152505050565b6000612b46612b4184612af3565b612ad8565b905082815260208101848484011115612b6257612b61612a73565b5b612b6d848285612b24565b509392505050565b600082601f830112612b8a57612b89612a6e565b5b8135612b9a848260208601612b33565b91505092915050565b600060208284031215612bb957612bb8612624565b5b600082013567ffffffffffffffff811115612bd757612bd6612629565b5b612be384828501612b75565b91505092915050565b612bf581612a0b565b82525050565b6000602082019050612c106000830184612bec565b92915050565b600080fd5b600080fd5b60008083601f840112612c3657612c35612a6e565b5b8235905067ffffffffffffffff811115612c5357612c52612c16565b5b602083019150836020820283011115612c6f57612c6e612c1b565b5b9250929050565b60008060208385031215612c8d57612c8c612624565b5b600083013567ffffffffffffffff811115612cab57612caa612629565b5b612cb785828601612c20565b92509250509250929050565b612ccc816126b3565b8114612cd757600080fd5b50565b600081359050612ce981612cc3565b92915050565b60008060408385031215612d0657612d05612624565b5b6000612d148582860161287a565b9250506020612d2585828601612cda565b9150509250929050565b600067ffffffffffffffff821115612d4a57612d49612a78565b5b612d5382612738565b9050602081019050919050565b6000612d73612d6e84612d2f565b612ad8565b905082815260208101848484011115612d8f57612d8e612a73565b5b612d9a848285612b24565b509392505050565b600082601f830112612db757612db6612a6e565b5b8135612dc7848260208601612d60565b91505092915050565b60008060008060808587031215612dea57612de9612624565b5b6000612df88782880161287a565b9450506020612e098782880161287a565b9350506040612e1a878288016127c5565b925050606085013567ffffffffffffffff811115612e3b57612e3a612629565b5b612e4787828801612da2565b91505092959194509250565b60008060408385031215612e6a57612e69612624565b5b6000612e788582860161287a565b9250506020612e898582860161287a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eda57607f821691505b60208210811415612eee57612eed612e93565b5b50919050565b600081905092915050565b6000612f0a826126e9565b612f148185612ef4565b9350612f24818560208601612705565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612f66600583612ef4565b9150612f7182612f30565b600582019050919050565b6000612f888285612eff565b9150612f948284612eff565b9150612f9f82612f59565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fe5826127a4565b9150612ff0836127a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561302557613024612fab565b5b828201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061308c6026836126f4565b915061309782613030565b604082019050919050565b600060208201905081810360008301526130bb8161307f565b9050919050565b60006130cd826127a4565b91506130d8836127a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561311157613110612fab565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131526020836126f4565b915061315d8261311c565b602082019050919050565b6000602082019050818103600083015261318181613145565b9050919050565b60008160601b9050919050565b60006131a082613188565b9050919050565b60006131b282613195565b9050919050565b6131ca6131c582612827565b6131a7565b82525050565b60006131dc82846131b9565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000613212826131eb565b61321c81856131f6565b935061322c818560208601612705565b61323581612738565b840191505092915050565b60006080820190506132556000830187612839565b6132626020830186612839565b61326f60408301856128cf565b81810360608301526132818184613207565b905095945050505050565b60008151905061329b8161265a565b92915050565b6000602082840312156132b7576132b6612624565b5b60006132c58482850161328c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613308826127a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561333b5761333a612fab565b5b60018201905091905056fea26469706673582212206533c8f29a96e00478283a6772fcd8a094250ff0a930fa2c66fe77f16b16b0c164736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806369ba1a751161010d578063a035b1fe116100a0578063e985e9c51161006f578063e985e9c5146106dc578063f19e75d414610719578063f2fde38b14610742578063f524d6cd1461076b578063f7ea7a3d146107a8576101f9565b8063a035b1fe1461062f578063a22cb4651461065a578063b88d4fde14610683578063c87b56dd1461069f576101f9565b80638da5cb5b116100dc5780638da5cb5b1461058757806391b7f5ed146105b257806395d89b41146105db57806397254e5514610606576101f9565b806369ba1a75146104df5780636c0360eb1461050857806370a0823114610533578063715018a614610570576101f9565b8063374bc20b116101905780634d7216901161015f5780634d721690146103e657806355f804b314610423578063561892361461044c5780636352211e1461047757806365f4fd12146104b4576101f9565b8063374bc20b1461034d5780633ccfd60b1461038a57806342842e0e146103a157806345149bb3146103bd576101f9565b806318160ddd116101cc57806318160ddd146102bf578063200d2ed2146102ea57806323b872dd146103155780632db1154414610331576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612686565b6107d1565b60405161023291906126ce565b60405180910390f35b34801561024757600080fd5b50610250610863565b60405161025d9190612782565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906127da565b6108f5565b60405161029a9190612848565b60405180910390f35b6102bd60048036038101906102b8919061288f565b610974565b005b3480156102cb57600080fd5b506102d4610ab8565b6040516102e191906128de565b60405180910390f35b3480156102f657600080fd5b506102ff610acf565b60405161030c9190612970565b60405180910390f35b61032f600480360381019061032a919061298b565b610ae2565b005b61034b600480360381019061034691906127da565b610e07565b005b34801561035957600080fd5b50610374600480360381019061036f91906129de565b610efe565b60405161038191906126ce565b60405180910390f35b34801561039657600080fd5b5061039f610f54565b005b6103bb60048036038101906103b6919061298b565b610fa5565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612a41565b610fc5565b005b3480156103f257600080fd5b5061040d600480360381019061040891906129de565b610fd7565b60405161041a91906128de565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612ba3565b611020565b005b34801561045857600080fd5b50610461611042565b60405161046e91906128de565b60405180910390f35b34801561048357600080fd5b5061049e600480360381019061049991906127da565b61104c565b6040516104ab9190612848565b60405180910390f35b3480156104c057600080fd5b506104c961105e565b6040516104d69190612bfb565b60405180910390f35b3480156104eb57600080fd5b50610506600480360381019061050191906127da565b611064565b005b34801561051457600080fd5b5061051d6110e2565b60405161052a9190612782565b60405180910390f35b34801561053f57600080fd5b5061055a600480360381019061055591906129de565b611170565b60405161056791906128de565b60405180910390f35b34801561057c57600080fd5b50610585611229565b005b34801561059357600080fd5b5061059c61123d565b6040516105a99190612848565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d491906127da565b611267565b005b3480156105e757600080fd5b506105f0611279565b6040516105fd9190612782565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190612c76565b61130b565b005b34801561063b57600080fd5b5061064461155a565b60405161065191906128de565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190612cef565b611560565b005b61069d60048036038101906106989190612dd0565b61166b565b005b3480156106ab57600080fd5b506106c660048036038101906106c191906127da565b6116de565b6040516106d39190612782565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190612e53565b611800565b60405161071091906126ce565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906127da565b611894565b005b34801561074e57600080fd5b50610769600480360381019061076491906129de565b611907565b005b34801561077757600080fd5b50610792600480360381019061078d91906129de565b61198b565b60405161079f91906126ce565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca91906127da565b6119e1565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461087290612ec2565b80601f016020809104026020016040519081016040528092919081815260200182805461089e90612ec2565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b5050505050905090565b6000610900826119f3565b610936576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097f8261104c565b90508073ffffffffffffffffffffffffffffffffffffffff166109a0611a52565b73ffffffffffffffffffffffffffffffffffffffff1614610a03576109cc816109c7611a52565b611800565b610a02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ac2611a5a565b6001546000540303905090565b600860149054906101000a900460ff1681565b6000610aed82611a63565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b54576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6084611b31565b91509150610b768187610b71611a52565b611b58565b610bc257610b8b86610b86611a52565b611800565b610bc1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c29576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c368686866001611b9c565b8015610c4157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0f85610ceb888887611ba2565b7c020000000000000000000000000000000000000000000000000000000017611bca565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d97576000600185019050600060046000838152602001908152602001600020541415610d95576000548114610d94578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dff8686866001611bf5565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e6c576040517f2e75101900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600280811115610e7f57610e7e6128f9565b5b600860149054906101000a900460ff166002811115610ea157610ea06128f9565b5b14610ed8576040517f012cd2e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108ae600c541115610ef257610eed81611bfb565b610efb565b610efa611d81565b5b50565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f5c611eb5565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fa2573d6000803e3d6000fd5b50565b610fc08383836040518060200160405280600081525061166b565b505050565b610fcd611eb5565b80600b8190555050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611028611eb5565b80600a908051906020019061103e929190612577565b5050565b6000600c54905090565b600061105782611a63565b9050919050565b600b5481565b61106c611eb5565b80600281111561107f5761107e6128f9565b5b600860146101000a81548160ff021916908360028111156110a3576110a26128f9565b5b02179055507f3665a8b73cada881fbf8d8433b7d9e7d21c1e53eecf7bb51fb15262d98ee0afb816040516110d791906128de565b60405180910390a150565b600a80546110ef90612ec2565b80601f016020809104026020016040519081016040528092919081815260200182805461111b90612ec2565b80156111685780601f1061113d57610100808354040283529160200191611168565b820191906000526020600020905b81548152906001019060200180831161114b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611231611eb5565b61123b6000611f33565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61126f611eb5565b8060098190555050565b60606003805461128890612ec2565b80601f01602080910402602001604051908101604052809291908181526020018280546112b490612ec2565b80156113015780601f106112d657610100808354040283529160200191611301565b820191906000526020600020905b8154815290600101906020018083116112e457829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611370576040517f2e75101900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60016002811115611384576113836128f9565b5b600860149054906101000a900460ff1660028111156113a6576113a56128f9565b5b146113dd576040517f012cd2e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106a4600c54111561141b576040517f47747fa900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114288282600b54611ff9565b61145e576040517f6a9a57a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114e2576040517f6f5aa9e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600c600082825401925050819055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611556336001612076565b5050565b60095481565b806007600061156d611a52565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661161a611a52565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161165f91906126ce565b60405180910390a35050565b611676848484610ae2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116d8576116a184848484612094565b6116d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116e9826119f3565b61171f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a805461172e90612ec2565b80601f016020809104026020016040519081016040528092919081815260200182805461175a90612ec2565b80156117a75780601f1061177c576101008083540402835291602001916117a7565b820191906000526020600020905b81548152906001019060200180831161178a57829003601f168201915b505050505090506000815114156117cd57604051806020016040528060008152506117f8565b806117d7846121f4565b6040516020016117e8929190612f7c565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61189c611eb5565b600d54816118a8610ab8565b6118b29190612fda565b11156118ea576040517f47747fa900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c600082825401925050819055506119043382612076565b50565b61190f611eb5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611976906130a2565b60405180910390fd5b61198881611f33565b50565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6119e9611eb5565b80600d8190555050565b6000816119fe611a5a565b11158015611a0d575060005482105b8015611a4b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611a72611a5a565b11611afa57600054811015611af95760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611af7575b6000811415611aed576004600083600190039350838152602001908152602001600020549050611ac2565b8092505050611b2c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bb986868461224d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60095481611c0991906130c2565b3414611c41576040517fc534702400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060058282611c939190612fda565b1115611ccb576040517f06f5d75400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d5482600c54611cdc9190612fda565b1115611d14576040517f47747fa900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600c600082825401925050819055508181611d309190612fda565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d7d3383612076565b5050565b60003414611dbb576040517fc534702400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e3f576040517f6f5aa9e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600c600082825401925050819055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611eb3336001612076565b565b611ebd612256565b73ffffffffffffffffffffffffffffffffffffffff16611edb61123d565b73ffffffffffffffffffffffffffffffffffffffff1614611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890613168565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061206d848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050833360405160200161205291906131d0565b6040516020818303038152906040528051906020012061225e565b90509392505050565b612090828260405180602001604052806000815250612275565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120ba611a52565b8786866040518563ffffffff1660e01b81526004016120dc9493929190613240565b602060405180830381600087803b1580156120f657600080fd5b505af192505050801561212757506040513d601f19601f8201168201806040525081019061212491906132a1565b60015b6121a1573d8060008114612157576040519150601f19603f3d011682016040523d82523d6000602084013e61215c565b606091505b50600081511415612199576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391506000825281835b60011561223857600184039350600a81066030018453600a810490508061223357612238565b61220d565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b60008261226b8584612312565b1490509392505050565b61227f8383612368565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461230d57600080549050600083820390505b6122bf6000868380600101945086612094565b6122f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122ac57816000541461230a57600080fd5b50505b505050565b60008082905060005b845181101561235d576123488286838151811061233b5761233a6132ce565b5b6020026020010151612525565b91508080612355906132fd565b91505061231b565b508091505092915050565b60008054905060008214156123a9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123b66000848385611b9c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061242d8361241e6000866000611ba2565b61242785612550565b17611bca565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146124ce57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612493565b50600082141561250a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125206000848385611bf5565b505050565b600081831061253d576125388284612560565b612548565b6125478383612560565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b82805461258390612ec2565b90600052602060002090601f0160209004810192826125a557600085556125ec565b82601f106125be57805160ff19168380011785556125ec565b828001600101855582156125ec579182015b828111156125eb5782518255916020019190600101906125d0565b5b5090506125f991906125fd565b5090565b5b808211156126165760008160009055506001016125fe565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126638161262e565b811461266e57600080fd5b50565b6000813590506126808161265a565b92915050565b60006020828403121561269c5761269b612624565b5b60006126aa84828501612671565b91505092915050565b60008115159050919050565b6126c8816126b3565b82525050565b60006020820190506126e360008301846126bf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612723578082015181840152602081019050612708565b83811115612732576000848401525b50505050565b6000601f19601f8301169050919050565b6000612754826126e9565b61275e81856126f4565b935061276e818560208601612705565b61277781612738565b840191505092915050565b6000602082019050818103600083015261279c8184612749565b905092915050565b6000819050919050565b6127b7816127a4565b81146127c257600080fd5b50565b6000813590506127d4816127ae565b92915050565b6000602082840312156127f0576127ef612624565b5b60006127fe848285016127c5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061283282612807565b9050919050565b61284281612827565b82525050565b600060208201905061285d6000830184612839565b92915050565b61286c81612827565b811461287757600080fd5b50565b60008135905061288981612863565b92915050565b600080604083850312156128a6576128a5612624565b5b60006128b48582860161287a565b92505060206128c5858286016127c5565b9150509250929050565b6128d8816127a4565b82525050565b60006020820190506128f360008301846128cf565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110612939576129386128f9565b5b50565b600081905061294a82612928565b919050565b600061295a8261293c565b9050919050565b61296a8161294f565b82525050565b60006020820190506129856000830184612961565b92915050565b6000806000606084860312156129a4576129a3612624565b5b60006129b28682870161287a565b93505060206129c38682870161287a565b92505060406129d4868287016127c5565b9150509250925092565b6000602082840312156129f4576129f3612624565b5b6000612a028482850161287a565b91505092915050565b6000819050919050565b612a1e81612a0b565b8114612a2957600080fd5b50565b600081359050612a3b81612a15565b92915050565b600060208284031215612a5757612a56612624565b5b6000612a6584828501612a2c565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ab082612738565b810181811067ffffffffffffffff82111715612acf57612ace612a78565b5b80604052505050565b6000612ae261261a565b9050612aee8282612aa7565b919050565b600067ffffffffffffffff821115612b0e57612b0d612a78565b5b612b1782612738565b9050602081019050919050565b82818337600083830152505050565b6000612b46612b4184612af3565b612ad8565b905082815260208101848484011115612b6257612b61612a73565b5b612b6d848285612b24565b509392505050565b600082601f830112612b8a57612b89612a6e565b5b8135612b9a848260208601612b33565b91505092915050565b600060208284031215612bb957612bb8612624565b5b600082013567ffffffffffffffff811115612bd757612bd6612629565b5b612be384828501612b75565b91505092915050565b612bf581612a0b565b82525050565b6000602082019050612c106000830184612bec565b92915050565b600080fd5b600080fd5b60008083601f840112612c3657612c35612a6e565b5b8235905067ffffffffffffffff811115612c5357612c52612c16565b5b602083019150836020820283011115612c6f57612c6e612c1b565b5b9250929050565b60008060208385031215612c8d57612c8c612624565b5b600083013567ffffffffffffffff811115612cab57612caa612629565b5b612cb785828601612c20565b92509250509250929050565b612ccc816126b3565b8114612cd757600080fd5b50565b600081359050612ce981612cc3565b92915050565b60008060408385031215612d0657612d05612624565b5b6000612d148582860161287a565b9250506020612d2585828601612cda565b9150509250929050565b600067ffffffffffffffff821115612d4a57612d49612a78565b5b612d5382612738565b9050602081019050919050565b6000612d73612d6e84612d2f565b612ad8565b905082815260208101848484011115612d8f57612d8e612a73565b5b612d9a848285612b24565b509392505050565b600082601f830112612db757612db6612a6e565b5b8135612dc7848260208601612d60565b91505092915050565b60008060008060808587031215612dea57612de9612624565b5b6000612df88782880161287a565b9450506020612e098782880161287a565b9350506040612e1a878288016127c5565b925050606085013567ffffffffffffffff811115612e3b57612e3a612629565b5b612e4787828801612da2565b91505092959194509250565b60008060408385031215612e6a57612e69612624565b5b6000612e788582860161287a565b9250506020612e898582860161287a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eda57607f821691505b60208210811415612eee57612eed612e93565b5b50919050565b600081905092915050565b6000612f0a826126e9565b612f148185612ef4565b9350612f24818560208601612705565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612f66600583612ef4565b9150612f7182612f30565b600582019050919050565b6000612f888285612eff565b9150612f948284612eff565b9150612f9f82612f59565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fe5826127a4565b9150612ff0836127a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561302557613024612fab565b5b828201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061308c6026836126f4565b915061309782613030565b604082019050919050565b600060208201905081810360008301526130bb8161307f565b9050919050565b60006130cd826127a4565b91506130d8836127a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561311157613110612fab565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131526020836126f4565b915061315d8261311c565b602082019050919050565b6000602082019050818103600083015261318181613145565b9050919050565b60008160601b9050919050565b60006131a082613188565b9050919050565b60006131b282613195565b9050919050565b6131ca6131c582612827565b6131a7565b82525050565b60006131dc82846131b9565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000613212826131eb565b61321c81856131f6565b935061322c818560208601612705565b61323581612738565b840191505092915050565b60006080820190506132556000830187612839565b6132626020830186612839565b61326f60408301856128cf565b81810360608301526132818184613207565b905095945050505050565b60008151905061329b8161265a565b92915050565b6000602082840312156132b7576132b6612624565b5b60006132c58482850161328c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613308826127a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561333b5761333a612fab565b5b60018201905091905056fea26469706673582212206533c8f29a96e00478283a6772fcd8a094250ff0a930fa2c66fe77f16b16b0c164736f6c63430008090033

Deployed Bytecode Sourcemap

490:7031:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;726:20:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3069:439:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6236:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7412:107;;;;;;;;;;;;;:::i;:::-;;22758:187:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7012:100:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6530:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6908:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6138:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11391:150:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;807:28:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6766:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;779:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;1201:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7118:86:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10208:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2120:943:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;752:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16901:231:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23526:396;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3855:457:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17282:162:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1758:356:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6364:160:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7210:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9155:630:4;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;5894:317::-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;726:20:3:-;;;;;;;;;;;;;:::o;19903:2764:4:-;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;3069:439:3:-;3190:10;3177:23;;:9;:23;;;3173:50;;3209:14;;;;;;;;;;;;;;3173:50;3281:13;3271:23;;;;;;;;:::i;:::-;;:6;;;;;;;;;;;:23;;;;;;;;:::i;:::-;;;3267:55;;3303:19;;;;;;;;;;;;;;3267:55;1210:4;3389:7;;:27;3385:117;;;3432:18;3441:8;3432;:18::i;:::-;3385:117;;;3481:10;:8;:10::i;:::-;3385:117;3069:439;:::o;6236:122::-;6304:4;6327:13;:24;6341:9;6327:24;;;;;;;;;;;;;;;;;;;;;;;;;6320:31;;6236:122;;;:::o;7412:107::-;1094:13:0;:11;:13::i;:::-;7469:10:3::1;7461:28;;:51;7490:21;7461:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;7412:107::o:0;22758:187:4:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;7012:100:3:-;1094:13:0;:11;:13::i;:::-;7099:6:3::1;7083:13;:22;;;;7012:100:::0;:::o;6530:153::-;6622:7;6652:13;:24;6666:9;6652:24;;;;;;;;;;;;;;;;6645:31;;6530:153;;;:::o;6908:98::-;1094:13:0;:11;:13::i;:::-;6991:8:3::1;6981:7;:18;;;;;;;;;;;;:::i;:::-;;6908:98:::0;:::o;6138:92::-;6190:7;6216;;6209:14;;6138:92;:::o;11391:150:4:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;807:28:3:-;;;;:::o;6766:136::-;1094:13:0;:11;:13::i;:::-;6848:8:3::1;6841:16;;;;;;;;:::i;:::-;;6832:6;;:25;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;6872:23;6886:8;6872:23;;;;;;:::i;:::-;;;;;;;;6766:136:::0;:::o;779:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7045:230:4:-;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;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;1201:85::-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;7118:86:3:-;1094:13:0;:11;:13::i;:::-;7190:7:3::1;7182:5;:15;;;;7118:86:::0;:::o;10208:102:4:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;2120:943:3:-;2246:10;2233:23;;:9;:23;;;2229:50;;2265:14;;;;;;;;;;;;;;2229:50;2342:16;2332:26;;;;;;;;:::i;:::-;;:6;;;;;;;;;;;:26;;;;;;;;:::i;:::-;;;2328:58;;2367:19;;;;;;;;;;;;;;2328:58;1155:4;2473:7;;:32;2469:65;;;2514:20;;;;;;;;;;;;;;2469:65;2595:39;2611:7;;2620:13;;2595:15;:39::i;:::-;2590:69;;2643:16;;;;;;;;;;;;;;2590:69;2745:18;:30;2764:10;2745:30;;;;;;;;;;;;;;;;;;;;;;;;;2741:68;;;2784:25;;;;;;;;;;;;;;2741:68;2884:1;2873:7;;:12;;;;;;;;;;;2993:4;2960:18;:30;2979:10;2960:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;3032:24;3042:10;3054:1;3032:9;:24::i;:::-;2120:943;;:::o;752:20::-;;;;:::o;16901:231:4:-;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;23526:396::-;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;3855:457:3:-;3970:13;4004:18;4012:9;4004:7;:18::i;:::-;3999:61;;4031:29;;;;;;;;;;;;;;3999:61;4071:23;4097:7;4071:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4160:1;4139:9;4133:23;:28;;:172;;;;;;;;;;;;;;;;;4225:9;4236:20;4246:9;4236;:20::i;:::-;4208:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4133:172;4114:191;;;3855:457;;;:::o;17282:162:4:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;1758:356:3:-;1094:13:0;:11;:13::i;:::-;1907:12:3::1;;1896:8;1880:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:39;1876:72;;;1928:20;;;;;;;;;;;;;;1876:72;2023:8;2012:7;;:19;;;;;;;;;;;2076:31;2086:10;2098:8;2076:9;:31::i;:::-;1758:356:::0;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;6364:160:3:-;6461:4;6488:18;:29;6507:9;6488:29;;;;;;;;;;;;;;;;;;;;;;;;;6481:36;;6364:160;;;:::o;7210:117::-;1094:13:0;:11;:13::i;:::-;7304:16:3::1;7289:12;:31;;;;7210:117:::0;:::o;17693:277:4:-;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;3694:155:3:-;3759:7;3841:1;3834:8;;3694:155;:::o;12515:1249:4:-;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;4937:814:3:-;5090:5;;5079:8;:16;;;;:::i;:::-;5066:9;:29;5062:64;;5104:22;;;;;;;;;;;;;;5062:64;5189:20;5212:13;:25;5226:10;5212:25;;;;;;;;;;;;;;;;5189:48;;1310:1;5266:8;5251:12;:23;;;;:::i;:::-;:47;5247:97;;;5319:25;;;;;;;;;;;;;;5247:97;5438:12;;5427:8;5417:7;;:18;;;;:::i;:::-;:33;5413:66;;;5459:20;;;;;;;;;;;;;;5413:66;5554:8;5543:7;;:19;;;;;;;;;;;5670:8;5655:12;:23;;;;:::i;:::-;5627:13;:25;5641:10;5627:25;;;;;;;;;;;;;;;:51;;;;5713:31;5723:10;5735:8;5713:9;:31::i;:::-;4982:769;4937:814;:::o;4392:539::-;4493:1;4480:9;:14;4476:49;;4503:22;;;;;;;;;;;;;;4476:49;4617:13;:25;4631:10;4617:25;;;;;;;;;;;;;;;;;;;;;;;;;4613:63;;;4651:25;;;;;;;;;;;;;;4613:63;4751:1;4740:7;;:12;;;;;;;;;;;4860:4;4832:13;:25;4846:10;4832:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;4900:24;4910:10;4922:1;4900:9;:24::i;:::-;4392:539::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;2433:187::-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;5757:300:3:-;5873:4;5912:138;5948:7;;5912:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5973:6;6024:10;6007:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;5997:39;;;;;;5912:18;:138::i;:::-;5893:157;;5757:300;;;;;:::o;33423:110:4:-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;25948:697::-;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;39637:1708::-;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;41070:25;;41088:5;;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;38475:143::-;38608:6;38475:143;;;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;1153:184:2:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;1290:40;;1153:184;;;;;:::o;32675:669:4:-;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;1991:290:2:-;2074:7;2093:20;2116:4;2093:27;;2135:9;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;;2202:9;:33::i;:::-;2187:48;;2168:3;;;;;:::i;:::-;;;;2130:116;;;;2262:12;2255:19;;;1991:290;;;;:::o;27091:2902:4:-;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;8054:147:2:-;8117:7;8147:1;8143;:5;:51;;8174:20;8189:1;8192;8174:14;:20::i;:::-;8143:51;;;8151:20;8166:1;8169;8151:14;:20::i;:::-;8143:51;8136:58;;8054:147;;;;:::o;14837:318:4:-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;8207:261:2:-;8275:13;8379:1;8373:4;8366:15;8407:1;8401:4;8394:15;8447:4;8441;8431:21;8422:30;;8207:261;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:6:-;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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:180::-;5338:77;5335:1;5328:88;5435:4;5432:1;5425:15;5459:4;5456:1;5449:15;5476:115;5559:1;5552:5;5549:12;5539:46;;5565:18;;:::i;:::-;5539:46;5476:115;:::o;5597:131::-;5644:7;5673:5;5662:16;;5679:43;5716:5;5679:43;:::i;:::-;5597:131;;;:::o;5734:::-;5792:9;5825:34;5853:5;5825:34;:::i;:::-;5812:47;;5734:131;;;:::o;5871:147::-;5966:45;6005:5;5966:45;:::i;:::-;5961:3;5954:58;5871:147;;:::o;6024:238::-;6125:4;6163:2;6152:9;6148:18;6140:26;;6176:79;6252:1;6241:9;6237:17;6228:6;6176:79;:::i;:::-;6024:238;;;;:::o;6268:619::-;6345:6;6353;6361;6410:2;6398:9;6389:7;6385:23;6381:32;6378:119;;;6416:79;;:::i;:::-;6378:119;6536:1;6561:53;6606:7;6597:6;6586:9;6582:22;6561:53;:::i;:::-;6551:63;;6507:117;6663:2;6689:53;6734:7;6725:6;6714:9;6710:22;6689:53;:::i;:::-;6679:63;;6634:118;6791:2;6817:53;6862:7;6853:6;6842:9;6838:22;6817:53;:::i;:::-;6807:63;;6762:118;6268:619;;;;;:::o;6893:329::-;6952:6;7001:2;6989:9;6980:7;6976:23;6972:32;6969:119;;;7007:79;;:::i;:::-;6969:119;7127:1;7152:53;7197:7;7188:6;7177:9;7173:22;7152:53;:::i;:::-;7142:63;;7098:117;6893:329;;;;:::o;7228:77::-;7265:7;7294:5;7283:16;;7228:77;;;:::o;7311:122::-;7384:24;7402:5;7384:24;:::i;:::-;7377:5;7374:35;7364:63;;7423:1;7420;7413:12;7364:63;7311:122;:::o;7439:139::-;7485:5;7523:6;7510:20;7501:29;;7539:33;7566:5;7539:33;:::i;:::-;7439:139;;;;:::o;7584:329::-;7643:6;7692:2;7680:9;7671:7;7667:23;7663:32;7660:119;;;7698:79;;:::i;:::-;7660:119;7818:1;7843:53;7888:7;7879:6;7868:9;7864:22;7843:53;:::i;:::-;7833:63;;7789:117;7584:329;;;;:::o;7919:117::-;8028:1;8025;8018:12;8042:117;8151:1;8148;8141:12;8165:180;8213:77;8210:1;8203:88;8310:4;8307:1;8300:15;8334:4;8331:1;8324:15;8351:281;8434:27;8456:4;8434:27;:::i;:::-;8426:6;8422:40;8564:6;8552:10;8549:22;8528:18;8516:10;8513:34;8510:62;8507:88;;;8575:18;;:::i;:::-;8507:88;8615:10;8611:2;8604:22;8394:238;8351:281;;:::o;8638:129::-;8672:6;8699:20;;:::i;:::-;8689:30;;8728:33;8756:4;8748:6;8728:33;:::i;:::-;8638:129;;;:::o;8773:308::-;8835:4;8925:18;8917:6;8914:30;8911:56;;;8947:18;;:::i;:::-;8911:56;8985:29;9007:6;8985:29;:::i;:::-;8977:37;;9069:4;9063;9059:15;9051:23;;8773:308;;;:::o;9087:154::-;9171:6;9166:3;9161;9148:30;9233:1;9224:6;9219:3;9215:16;9208:27;9087:154;;;:::o;9247:412::-;9325:5;9350:66;9366:49;9408:6;9366:49;:::i;:::-;9350:66;:::i;:::-;9341:75;;9439:6;9432:5;9425:21;9477:4;9470:5;9466:16;9515:3;9506:6;9501:3;9497:16;9494:25;9491:112;;;9522:79;;:::i;:::-;9491:112;9612:41;9646:6;9641:3;9636;9612:41;:::i;:::-;9331:328;9247:412;;;;;:::o;9679:340::-;9735:5;9784:3;9777:4;9769:6;9765:17;9761:27;9751:122;;9792:79;;:::i;:::-;9751:122;9909:6;9896:20;9934:79;10009:3;10001:6;9994:4;9986:6;9982:17;9934:79;:::i;:::-;9925:88;;9741:278;9679:340;;;;:::o;10025:509::-;10094:6;10143:2;10131:9;10122:7;10118:23;10114:32;10111:119;;;10149:79;;:::i;:::-;10111:119;10297:1;10286:9;10282:17;10269:31;10327:18;10319:6;10316:30;10313:117;;;10349:79;;:::i;:::-;10313:117;10454:63;10509:7;10500:6;10489:9;10485:22;10454:63;:::i;:::-;10444:73;;10240:287;10025:509;;;;:::o;10540:118::-;10627:24;10645:5;10627:24;:::i;:::-;10622:3;10615:37;10540:118;;:::o;10664:222::-;10757:4;10795:2;10784:9;10780:18;10772:26;;10808:71;10876:1;10865:9;10861:17;10852:6;10808:71;:::i;:::-;10664:222;;;;:::o;10892:117::-;11001:1;10998;10991:12;11015:117;11124:1;11121;11114:12;11155:568;11228:8;11238:6;11288:3;11281:4;11273:6;11269:17;11265:27;11255:122;;11296:79;;:::i;:::-;11255:122;11409:6;11396:20;11386:30;;11439:18;11431:6;11428:30;11425:117;;;11461:79;;:::i;:::-;11425:117;11575:4;11567:6;11563:17;11551:29;;11629:3;11621:4;11613:6;11609:17;11599:8;11595:32;11592:41;11589:128;;;11636:79;;:::i;:::-;11589:128;11155:568;;;;;:::o;11729:559::-;11815:6;11823;11872:2;11860:9;11851:7;11847:23;11843:32;11840:119;;;11878:79;;:::i;:::-;11840:119;12026:1;12015:9;12011:17;11998:31;12056:18;12048:6;12045:30;12042:117;;;12078:79;;:::i;:::-;12042:117;12191:80;12263:7;12254:6;12243:9;12239:22;12191:80;:::i;:::-;12173:98;;;;11969:312;11729:559;;;;;:::o;12294:116::-;12364:21;12379:5;12364:21;:::i;:::-;12357:5;12354:32;12344:60;;12400:1;12397;12390:12;12344:60;12294:116;:::o;12416:133::-;12459:5;12497:6;12484:20;12475:29;;12513:30;12537:5;12513:30;:::i;:::-;12416:133;;;;:::o;12555:468::-;12620:6;12628;12677:2;12665:9;12656:7;12652:23;12648:32;12645:119;;;12683:79;;:::i;:::-;12645:119;12803:1;12828:53;12873:7;12864:6;12853:9;12849:22;12828:53;:::i;:::-;12818:63;;12774:117;12930:2;12956:50;12998:7;12989:6;12978:9;12974:22;12956:50;:::i;:::-;12946:60;;12901:115;12555:468;;;;;:::o;13029:307::-;13090:4;13180:18;13172:6;13169:30;13166:56;;;13202:18;;:::i;:::-;13166:56;13240:29;13262:6;13240:29;:::i;:::-;13232:37;;13324:4;13318;13314:15;13306:23;;13029:307;;;:::o;13342:410::-;13419:5;13444:65;13460:48;13501:6;13460:48;:::i;:::-;13444:65;:::i;:::-;13435:74;;13532:6;13525:5;13518:21;13570:4;13563:5;13559:16;13608:3;13599:6;13594:3;13590:16;13587:25;13584:112;;;13615:79;;:::i;:::-;13584:112;13705:41;13739:6;13734:3;13729;13705:41;:::i;:::-;13425:327;13342:410;;;;;:::o;13771:338::-;13826:5;13875:3;13868:4;13860:6;13856:17;13852:27;13842:122;;13883:79;;:::i;:::-;13842:122;14000:6;13987:20;14025:78;14099:3;14091:6;14084:4;14076:6;14072:17;14025:78;:::i;:::-;14016:87;;13832:277;13771:338;;;;:::o;14115:943::-;14210:6;14218;14226;14234;14283:3;14271:9;14262:7;14258:23;14254:33;14251:120;;;14290:79;;:::i;:::-;14251:120;14410:1;14435:53;14480:7;14471:6;14460:9;14456:22;14435:53;:::i;:::-;14425:63;;14381:117;14537:2;14563:53;14608:7;14599:6;14588:9;14584:22;14563:53;:::i;:::-;14553:63;;14508:118;14665:2;14691:53;14736:7;14727:6;14716:9;14712:22;14691:53;:::i;:::-;14681:63;;14636:118;14821:2;14810:9;14806:18;14793:32;14852:18;14844:6;14841:30;14838:117;;;14874:79;;:::i;:::-;14838:117;14979:62;15033:7;15024:6;15013:9;15009:22;14979:62;:::i;:::-;14969:72;;14764:287;14115:943;;;;;;;:::o;15064:474::-;15132:6;15140;15189:2;15177:9;15168:7;15164:23;15160:32;15157:119;;;15195:79;;:::i;:::-;15157:119;15315:1;15340:53;15385:7;15376:6;15365:9;15361:22;15340:53;:::i;:::-;15330:63;;15286:117;15442:2;15468:53;15513:7;15504:6;15493:9;15489:22;15468:53;:::i;:::-;15458:63;;15413:118;15064:474;;;;;:::o;15544:180::-;15592:77;15589:1;15582:88;15689:4;15686:1;15679:15;15713:4;15710:1;15703:15;15730:320;15774:6;15811:1;15805:4;15801:12;15791:22;;15858:1;15852:4;15848:12;15879:18;15869:81;;15935:4;15927:6;15923:17;15913:27;;15869:81;15997:2;15989:6;15986:14;15966:18;15963:38;15960:84;;;16016:18;;:::i;:::-;15960:84;15781:269;15730:320;;;:::o;16056:148::-;16158:11;16195:3;16180:18;;16056:148;;;;:::o;16210:377::-;16316:3;16344:39;16377:5;16344:39;:::i;:::-;16399:89;16481:6;16476:3;16399:89;:::i;:::-;16392:96;;16497:52;16542:6;16537:3;16530:4;16523:5;16519:16;16497:52;:::i;:::-;16574:6;16569:3;16565:16;16558:23;;16320:267;16210:377;;;;:::o;16593:155::-;16733:7;16729:1;16721:6;16717:14;16710:31;16593:155;:::o;16754:400::-;16914:3;16935:84;17017:1;17012:3;16935:84;:::i;:::-;16928:91;;17028:93;17117:3;17028:93;:::i;:::-;17146:1;17141:3;17137:11;17130:18;;16754:400;;;:::o;17160:701::-;17441:3;17463:95;17554:3;17545:6;17463:95;:::i;:::-;17456:102;;17575:95;17666:3;17657:6;17575:95;:::i;:::-;17568:102;;17687:148;17831:3;17687:148;:::i;:::-;17680:155;;17852:3;17845:10;;17160:701;;;;;:::o;17867:180::-;17915:77;17912:1;17905:88;18012:4;18009:1;18002:15;18036:4;18033:1;18026:15;18053:305;18093:3;18112:20;18130:1;18112:20;:::i;:::-;18107:25;;18146:20;18164:1;18146:20;:::i;:::-;18141:25;;18300:1;18232:66;18228:74;18225:1;18222:81;18219:107;;;18306:18;;:::i;:::-;18219:107;18350:1;18347;18343:9;18336:16;;18053:305;;;;:::o;18364:225::-;18504:34;18500:1;18492:6;18488:14;18481:58;18573:8;18568:2;18560:6;18556:15;18549:33;18364:225;:::o;18595:366::-;18737:3;18758:67;18822:2;18817:3;18758:67;:::i;:::-;18751:74;;18834:93;18923:3;18834:93;:::i;:::-;18952:2;18947:3;18943:12;18936:19;;18595:366;;;:::o;18967:419::-;19133:4;19171:2;19160:9;19156:18;19148:26;;19220:9;19214:4;19210:20;19206:1;19195:9;19191:17;19184:47;19248:131;19374:4;19248:131;:::i;:::-;19240:139;;18967:419;;;:::o;19392:348::-;19432:7;19455:20;19473:1;19455:20;:::i;:::-;19450:25;;19489:20;19507:1;19489:20;:::i;:::-;19484:25;;19677:1;19609:66;19605:74;19602:1;19599:81;19594:1;19587:9;19580:17;19576:105;19573:131;;;19684:18;;:::i;:::-;19573:131;19732:1;19729;19725:9;19714:20;;19392:348;;;;:::o;19746:182::-;19886:34;19882:1;19874:6;19870:14;19863:58;19746:182;:::o;19934:366::-;20076:3;20097:67;20161:2;20156:3;20097:67;:::i;:::-;20090:74;;20173:93;20262:3;20173:93;:::i;:::-;20291:2;20286:3;20282:12;20275:19;;19934:366;;;:::o;20306:419::-;20472:4;20510:2;20499:9;20495:18;20487:26;;20559:9;20553:4;20549:20;20545:1;20534:9;20530:17;20523:47;20587:131;20713:4;20587:131;:::i;:::-;20579:139;;20306:419;;;:::o;20731:94::-;20764:8;20812:5;20808:2;20804:14;20783:35;;20731:94;;;:::o;20831:::-;20870:7;20899:20;20913:5;20899:20;:::i;:::-;20888:31;;20831:94;;;:::o;20931:100::-;20970:7;20999:26;21019:5;20999:26;:::i;:::-;20988:37;;20931:100;;;:::o;21037:157::-;21142:45;21162:24;21180:5;21162:24;:::i;:::-;21142:45;:::i;:::-;21137:3;21130:58;21037:157;;:::o;21200:256::-;21312:3;21327:75;21398:3;21389:6;21327:75;:::i;:::-;21427:2;21422:3;21418:12;21411:19;;21447:3;21440:10;;21200:256;;;;:::o;21462:98::-;21513:6;21547:5;21541:12;21531:22;;21462:98;;;:::o;21566:168::-;21649:11;21683:6;21678:3;21671:19;21723:4;21718:3;21714:14;21699:29;;21566:168;;;;:::o;21740:360::-;21826:3;21854:38;21886:5;21854:38;:::i;:::-;21908:70;21971:6;21966:3;21908:70;:::i;:::-;21901:77;;21987:52;22032:6;22027:3;22020:4;22013:5;22009:16;21987:52;:::i;:::-;22064:29;22086:6;22064:29;:::i;:::-;22059:3;22055:39;22048:46;;21830:270;21740:360;;;;:::o;22106:640::-;22301:4;22339:3;22328:9;22324:19;22316:27;;22353:71;22421:1;22410:9;22406:17;22397:6;22353:71;:::i;:::-;22434:72;22502:2;22491:9;22487:18;22478:6;22434:72;:::i;:::-;22516;22584:2;22573:9;22569:18;22560:6;22516:72;:::i;:::-;22635:9;22629:4;22625:20;22620:2;22609:9;22605:18;22598:48;22663:76;22734:4;22725:6;22663:76;:::i;:::-;22655:84;;22106:640;;;;;;;:::o;22752:141::-;22808:5;22839:6;22833:13;22824:22;;22855:32;22881:5;22855:32;:::i;:::-;22752:141;;;;:::o;22899:349::-;22968:6;23017:2;23005:9;22996:7;22992:23;22988:32;22985:119;;;23023:79;;:::i;:::-;22985:119;23143:1;23168:63;23223:7;23214:6;23203:9;23199:22;23168:63;:::i;:::-;23158:73;;23114:127;22899:349;;;;:::o;23254:180::-;23302:77;23299:1;23292:88;23399:4;23396:1;23389:15;23423:4;23420:1;23413:15;23440:233;23479:3;23502:24;23520:5;23502:24;:::i;:::-;23493:33;;23548:66;23541:5;23538:77;23535:103;;;23618:18;;:::i;:::-;23535:103;23665:1;23658:5;23654:13;23647:20;;23440:233;;;:::o

Swarm Source

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