ETH Price: $3,315.37 (-3.45%)
Gas: 23 Gwei

Token

Shadow_XYZ (SHDW)
 

Overview

Max Total Supply

2,259 SHDW

Holders

463

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 SHDW
0x62d35fb79e1003fc179a92b88e278bcdc1ae4e15
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:
Shadow_XYZ

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 6 of 7: Shadow_XYZ.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import './ERC721A.sol';
import './Ownable.sol';
import './ECDSA.sol';

error IncorrectSignature();
error SoldOut();
error MaxMintTokensExceeded();
error AddressCantBeBurner();
error CantWithdrawFunds();

contract Shadow_XYZ is ERC721A, Ownable {
    using ECDSA for bytes32;

    address private _signerAddress;
    address private _authorWallet;

    uint256 private _authorMaxPayment;
    uint256 private _authorAlreadyPaid;

    string public baseURI;
    uint256 public maxSupply;

    constructor( uint256 newMaxSupply, address newSignerAddress, string memory newBaseURI, address newAuthorWallet, uint256 newAuthorMaxPayment ) ERC721A("Shadow_XYZ", "SHDW") {
        maxSupply = newMaxSupply;
        baseURI = newBaseURI;
        _signerAddress = newSignerAddress;
        _authorWallet = newAuthorWallet;
        _authorMaxPayment = newAuthorMaxPayment;
    }

    // public functions

    /**
     * @dev Important: You will need a valid signature to mint. The signature will only be generated on the official website.
     */
    function mint(bytes calldata signature, uint256 quantity, uint256 maxMintable) external payable {
        if( !_verifySig(msg.sender, msg.value, maxMintable, signature) ) revert IncorrectSignature();
        if( totalSupply() + quantity > maxSupply ) revert SoldOut();
        if( _numberMinted(msg.sender) + quantity > maxMintable ) revert MaxMintTokensExceeded();

        _mint(msg.sender, quantity);
    }

    // internal functions

    function _verifySig(address sender, uint256 valueSent, uint256 maxMintable, bytes memory signature) internal view returns(bool) {
        bytes32 messageHash = keccak256(abi.encodePacked(sender, valueSent, maxMintable));
        return _signerAddress == messageHash.toEthSignedMessageHash().recover(signature);
    }

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

    // owner functions

    /**
     * @dev Aidrop tokens to given address (onlyOwner)
     */
    function airdop(address receiver, uint256 quantity ) external onlyOwner {
        if( totalSupply() + quantity > maxSupply ) revert SoldOut();
        _mint(receiver, quantity);
    }

    /**
     * @dev Batch aidrop tokens to given addresses (onlyOwner)
     */
    function airdopBatch(address[] calldata receivers, uint256[] calldata quantities ) external onlyOwner {

        uint256 totalQuantity = 0;

        for( uint256 i = 0; i < quantities.length; i++ ) {
            totalQuantity += quantities[i];
        }

        if( totalSupply() + totalQuantity > maxSupply ) revert SoldOut();

        for( uint256 i = 0; i < receivers.length; i++ ) {
            _mint(receivers[i], quantities[i]);
        }
    }

    /**
     * @dev Set the signer address to verify signatures (onlyOwner)
     */
    function setSignerAddress(address newSignerAddress) external onlyOwner {
        if( newSignerAddress == address(0) ) revert AddressCantBeBurner();
        _signerAddress = newSignerAddress;
    }

    /**
     * @dev Set base uri for token metadata (onlyOwner)
     */
    function setBaseURI(string memory newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }

    /**
     * @dev Withdraw all funds (onlyOwner)
     */
    function withdrawAll() external onlyOwner {

        uint256 balance = address(this).balance;

        if( _authorAlreadyPaid < _authorMaxPayment ) {
            if( balance < _authorMaxPayment - _authorAlreadyPaid ) {
                payable(_authorWallet).transfer(balance);
                _authorAlreadyPaid += balance;
            } else {
                uint256 lastAuthorPayment = _authorMaxPayment - _authorAlreadyPaid;
                uint256 leftover = balance - lastAuthorPayment;

                payable(_authorWallet).transfer(lastAuthorPayment);
                payable(msg.sender).transfer(leftover);

                _authorAlreadyPaid = _authorMaxPayment; 
            }

        } else {
            payable(msg.sender).transfer(balance);
        }
        
    }

}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 3 of 7: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// 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 {
    // Reference type for token approval.
    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 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 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 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 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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // 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 4 of 7: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// 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;

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                           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 5 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./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 7 of 7: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"},{"internalType":"address","name":"newSignerAddress","type":"address"},{"internalType":"string","name":"newBaseURI","type":"string"},{"internalType":"address","name":"newAuthorWallet","type":"address"},{"internalType":"uint256","name":"newAuthorMaxPayment","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AddressCantBeBurner","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"IncorrectSignature","type":"error"},{"inputs":[],"name":"MaxMintTokensExceeded","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SoldOut","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"airdopBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"maxMintable","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSignerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200396c3803806200396c8339818101604052810190620000379190620003f0565b6040518060400160405280600a81526020017f536861646f775f58595a000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53484457000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb92919062000294565b508060039080519060200190620000d492919062000294565b50620000e5620001c160201b60201c565b60008190555050506200010d62000101620001c660201b60201c565b620001ce60201b60201c565b84600e8190555082600d90805190602001906200012c92919062000294565b5083600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b8190555050505050506200068d565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a2906200056a565b90600052602060002090601f016020900481019282620002c6576000855562000312565b82601f10620002e157805160ff191683800117855562000312565b8280016001018555821562000312579182015b8281111562000311578251825591602001919060010190620002f4565b5b50905062000321919062000325565b5090565b5b808211156200034057600081600090555060010162000326565b5090565b60006200035b6200035584620004c0565b62000497565b9050828152602081018484840111156200037a576200037962000639565b5b6200038784828562000534565b509392505050565b600081519050620003a08162000659565b92915050565b600082601f830112620003be57620003bd62000634565b5b8151620003d084826020860162000344565b91505092915050565b600081519050620003ea8162000673565b92915050565b600080600080600060a086880312156200040f576200040e62000643565b5b60006200041f88828901620003d9565b955050602062000432888289016200038f565b945050604086015167ffffffffffffffff8111156200045657620004556200063e565b5b6200046488828901620003a6565b935050606062000477888289016200038f565b92505060806200048a88828901620003d9565b9150509295509295909350565b6000620004a3620004b6565b9050620004b18282620005a0565b919050565b6000604051905090565b600067ffffffffffffffff821115620004de57620004dd62000605565b5b620004e98262000648565b9050602081019050919050565b600062000503826200050a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200055457808201518184015260208101905062000537565b8381111562000564576000848401525b50505050565b600060028204905060018216806200058357607f821691505b602082108114156200059a5762000599620005d6565b5b50919050565b620005ab8262000648565b810181811067ffffffffffffffff82111715620005cd57620005cc62000605565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200066481620004f6565b81146200067057600080fd5b50565b6200067e816200052a565b81146200068a57600080fd5b50565b6132cf806200069d6000396000f3fe6080604052600436106101665760003560e01c80636c0360eb116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd146104f1578063d5abeb011461052e578063e985e9c514610559578063f2fde38b1461059657610166565b806395d89b4114610474578063a22cb4651461049f578063b88d4fde146104c857610166565b80636c0360eb1461039757806370a08231146103c257806370f93ede146103ff578063715018a61461041b578063853828b6146104325780638da5cb5b1461044957610166565b806318160ddd1161012357806318160ddd1461028b57806323b872dd146102b65780633f1d72ba146102df57806342842e0e1461030857806355f804b3146103315780636352211e1461035a57610166565b806301ffc9a71461016b578063046dc166146101a857806306fdde03146101d15780630751e86b146101fc578063081812fc14610225578063095ea7b314610262575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d919061275b565b6105bf565b60405161019f9190612b92565b60405180910390f35b3480156101b457600080fd5b506101cf60048036038101906101ca9190612517565b610651565b005b3480156101dd57600080fd5b506101e6610704565b6040516101f39190612bf2565b60405180910390f35b34801561020857600080fd5b50610223600480360381019061021e91906126da565b610796565b005b34801561023157600080fd5b5061024c60048036038101906102479190612872565b6108a9565b6040516102599190612b2b565b60405180910390f35b34801561026e57600080fd5b506102896004803603810190610284919061269a565b610928565b005b34801561029757600080fd5b506102a0610a6c565b6040516102ad9190612cb4565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612584565b610a83565b005b3480156102eb57600080fd5b506103066004803603810190610301919061269a565b610da8565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612584565b610e0c565b005b34801561033d57600080fd5b5061035860048036038101906103539190612829565b610e2c565b005b34801561036657600080fd5b50610381600480360381019061037c9190612872565b610e4e565b60405161038e9190612b2b565b60405180910390f35b3480156103a357600080fd5b506103ac610e60565b6040516103b99190612bf2565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190612517565b610eee565b6040516103f69190612cb4565b60405180910390f35b610419600480360381019061041491906127b5565b610fa7565b005b34801561042757600080fd5b506104306110d8565b005b34801561043e57600080fd5b506104476110ec565b005b34801561045557600080fd5b5061045e6112d3565b60405161046b9190612b2b565b60405180910390f35b34801561048057600080fd5b506104896112fd565b6040516104969190612bf2565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c1919061265a565b61138f565b005b3480156104d457600080fd5b506104ef60048036038101906104ea91906125d7565b61149a565b005b3480156104fd57600080fd5b5061051860048036038101906105139190612872565b61150d565b6040516105259190612bf2565b60405180910390f35b34801561053a57600080fd5b506105436115ac565b6040516105509190612cb4565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190612544565b6115b2565b60405161058d9190612b92565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612517565b611646565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061064a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6106596116ca565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106c0576040517f746ef87300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606002805461071390612ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461073f90612ef0565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b61079e6116ca565b6000805b838390508110156107e7578383828181106107c0576107bf613061565b5b90506020020135826107d29190612d99565b915080806107df90612f53565b9150506107a2565b50600e54816107f4610a6c565b6107fe9190612d99565b1115610836576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b858590508110156108a15761088e86868381811061085a57610859613061565b5b905060200201602081019061086f9190612517565b85858481811061088257610881613061565b5b90506020020135611748565b808061089990612f53565b915050610839565b505050505050565b60006108b482611905565b6108ea576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093382610e4e565b90508073ffffffffffffffffffffffffffffffffffffffff16610954611964565b73ffffffffffffffffffffffffffffffffffffffff16146109b7576109808161097b611964565b6115b2565b6109b6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a7661196c565b6001546000540303905090565b6000610a8e82611971565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610af5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b0184611a3f565b91509150610b178187610b12611964565b611a66565b610b6357610b2c86610b27611964565b6115b2565b610b62576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bca576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bd78686866001611aaa565b8015610be257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cb085610c8c888887611ab0565b7c020000000000000000000000000000000000000000000000000000000017611ad8565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d38576000600185019050600060046000838152602001908152602001600020541415610d36576000548114610d35578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610da08686866001611b03565b505050505050565b610db06116ca565b600e5481610dbc610a6c565b610dc69190612d99565b1115610dfe576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e088282611748565b5050565b610e278383836040518060200160405280600081525061149a565b505050565b610e346116ca565b80600d9080519060200190610e4a929190612229565b5050565b6000610e5982611971565b9050919050565b600d8054610e6d90612ef0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9990612ef0565b8015610ee65780601f10610ebb57610100808354040283529160200191610ee6565b820191906000526020600020905b815481529060010190602001808311610ec957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f56576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ff733348387878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611b09565b61102d576040517fc1606c2f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e5482611039610a6c565b6110439190612d99565b111561107b576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808261108633611baf565b6110909190612d99565b11156110c8576040517fd58a411000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110d23383611748565b50505050565b6110e06116ca565b6110ea6000611c06565b565b6110f46116ca565b6000479050600b54600c54101561128857600c54600b546111159190612def565b8110156111a357600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611184573d6000803e3d6000fd5b5080600c60008282546111979190612d99565b92505081905550611283565b6000600c54600b546111b59190612def565b9050600081836111c59190612def565b9050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561122f573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611276573d6000803e3d6000fd5b50600b54600c8190555050505b6112d0565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112ce573d6000803e3d6000fd5b505b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461130c90612ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461133890612ef0565b80156113855780601f1061135a57610100808354040283529160200191611385565b820191906000526020600020905b81548152906001019060200180831161136857829003601f168201915b5050505050905090565b806007600061139c611964565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611449611964565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161148e9190612b92565b60405180910390a35050565b6114a5848484610a83565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611507576114d084848484611ccc565b611506576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061151882611905565b61154e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611558611e2c565b905060008151141561157957604051806020016040528060008152506115a4565b8061158384611ebe565b604051602001611594929190612ae1565b6040516020818303038152906040525b915050919050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61164e6116ca565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590612c54565b60405180910390fd5b6116c781611c06565b50565b6116d2611f0e565b73ffffffffffffffffffffffffffffffffffffffff166116f06112d3565b73ffffffffffffffffffffffffffffffffffffffff1614611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90612c94565b60405180910390fd5b565b6000805490506000821415611789576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117966000848385611aaa565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061180d836117fe6000866000611ab0565b61180785611f16565b17611ad8565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146118ae57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611873565b5060008214156118ea576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506119006000848385611b03565b505050565b60008161191061196c565b1115801561191f575060005482105b801561195d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061198061196c565b11611a0857600054811015611a075760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a05575b60008114156119fb5760046000836001900393508381526020019081526020016000205490506119d0565b8092505050611a3a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ac7868684611f26565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080858585604051602001611b2193929190612aa4565b604051602081830303815290604052805190602001209050611b5483611b4683611f2f565b611f5f90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cf2611964565b8786866040518563ffffffff1660e01b8152600401611d149493929190612b46565b602060405180830381600087803b158015611d2e57600080fd5b505af1925050508015611d5f57506040513d601f19601f82011682018060405250810190611d5c9190612788565b60015b611dd9573d8060008114611d8f576040519150601f19603f3d011682016040523d82523d6000602084013e611d94565b606091505b50600081511415611dd1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611e3b90612ef0565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6790612ef0565b8015611eb45780601f10611e8957610100808354040283529160200191611eb4565b820191906000526020600020905b815481529060010190602001808311611e9757829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611efa57600183039250600a81066030018353600a8104905080611ef557611efa565b611ecf565b508181036020830392508083525050919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b600081604051602001611f429190612b05565b604051602081830303815290604052805190602001209050919050565b6000806000611f6e8585611f86565b91509150611f7b81611fd8565b819250505092915050565b600080604183511415611fc85760008060006020860151925060408601519150606086015160001a9050611fbc87828585612146565b94509450505050611fd1565b60006002915091505b9250929050565b60006004811115611fec57611feb613003565b5b816004811115611fff57611ffe613003565b5b141561200a57612143565b6001600481111561201e5761201d613003565b5b81600481111561203157612030613003565b5b1415612072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206990612c14565b60405180910390fd5b6002600481111561208657612085613003565b5b81600481111561209957612098613003565b5b14156120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d190612c34565b60405180910390fd5b600360048111156120ee576120ed613003565b5b81600481111561210157612100613003565b5b1415612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990612c74565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612181576000600391509150612220565b6000600187878787604051600081526020016040526040516121a69493929190612bad565b6020604051602081039080840390855afa1580156121c8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561221757600060019250925050612220565b80600092509250505b94509492505050565b82805461223590612ef0565b90600052602060002090601f016020900481019282612257576000855561229e565b82601f1061227057805160ff191683800117855561229e565b8280016001018555821561229e579182015b8281111561229d578251825591602001919060010190612282565b5b5090506122ab91906122af565b5090565b5b808211156122c85760008160009055506001016122b0565b5090565b60006122df6122da84612cf4565b612ccf565b9050828152602081018484840111156122fb576122fa6130ce565b5b612306848285612eae565b509392505050565b600061232161231c84612d25565b612ccf565b90508281526020810184848401111561233d5761233c6130ce565b5b612348848285612eae565b509392505050565b60008135905061235f8161323d565b92915050565b60008083601f84011261237b5761237a6130c4565b5b8235905067ffffffffffffffff811115612398576123976130bf565b5b6020830191508360208202830111156123b4576123b36130c9565b5b9250929050565b60008083601f8401126123d1576123d06130c4565b5b8235905067ffffffffffffffff8111156123ee576123ed6130bf565b5b60208301915083602082028301111561240a576124096130c9565b5b9250929050565b60008135905061242081613254565b92915050565b6000813590506124358161326b565b92915050565b60008151905061244a8161326b565b92915050565b60008083601f840112612466576124656130c4565b5b8235905067ffffffffffffffff811115612483576124826130bf565b5b60208301915083600182028301111561249f5761249e6130c9565b5b9250929050565b600082601f8301126124bb576124ba6130c4565b5b81356124cb8482602086016122cc565b91505092915050565b600082601f8301126124e9576124e86130c4565b5b81356124f984826020860161230e565b91505092915050565b60008135905061251181613282565b92915050565b60006020828403121561252d5761252c6130d8565b5b600061253b84828501612350565b91505092915050565b6000806040838503121561255b5761255a6130d8565b5b600061256985828601612350565b925050602061257a85828601612350565b9150509250929050565b60008060006060848603121561259d5761259c6130d8565b5b60006125ab86828701612350565b93505060206125bc86828701612350565b92505060406125cd86828701612502565b9150509250925092565b600080600080608085870312156125f1576125f06130d8565b5b60006125ff87828801612350565b945050602061261087828801612350565b935050604061262187828801612502565b925050606085013567ffffffffffffffff811115612642576126416130d3565b5b61264e878288016124a6565b91505092959194509250565b60008060408385031215612671576126706130d8565b5b600061267f85828601612350565b925050602061269085828601612411565b9150509250929050565b600080604083850312156126b1576126b06130d8565b5b60006126bf85828601612350565b92505060206126d085828601612502565b9150509250929050565b600080600080604085870312156126f4576126f36130d8565b5b600085013567ffffffffffffffff811115612712576127116130d3565b5b61271e87828801612365565b9450945050602085013567ffffffffffffffff811115612741576127406130d3565b5b61274d878288016123bb565b925092505092959194509250565b600060208284031215612771576127706130d8565b5b600061277f84828501612426565b91505092915050565b60006020828403121561279e5761279d6130d8565b5b60006127ac8482850161243b565b91505092915050565b600080600080606085870312156127cf576127ce6130d8565b5b600085013567ffffffffffffffff8111156127ed576127ec6130d3565b5b6127f987828801612450565b9450945050602061280c87828801612502565b925050604061281d87828801612502565b91505092959194509250565b60006020828403121561283f5761283e6130d8565b5b600082013567ffffffffffffffff81111561285d5761285c6130d3565b5b612869848285016124d4565b91505092915050565b600060208284031215612888576128876130d8565b5b600061289684828501612502565b91505092915050565b6128a881612e23565b82525050565b6128bf6128ba82612e23565b612f9c565b82525050565b6128ce81612e35565b82525050565b6128dd81612e41565b82525050565b6128f46128ef82612e41565b612fae565b82525050565b600061290582612d56565b61290f8185612d6c565b935061291f818560208601612ebd565b612928816130dd565b840191505092915050565b600061293e82612d61565b6129488185612d7d565b9350612958818560208601612ebd565b612961816130dd565b840191505092915050565b600061297782612d61565b6129818185612d8e565b9350612991818560208601612ebd565b80840191505092915050565b60006129aa601883612d7d565b91506129b5826130fb565b602082019050919050565b60006129cd601f83612d7d565b91506129d882613124565b602082019050919050565b60006129f0601c83612d8e565b91506129fb8261314d565b601c82019050919050565b6000612a13602683612d7d565b9150612a1e82613176565b604082019050919050565b6000612a36602283612d7d565b9150612a41826131c5565b604082019050919050565b6000612a59602083612d7d565b9150612a6482613214565b602082019050919050565b612a7881612e97565b82525050565b612a8f612a8a82612e97565b612fca565b82525050565b612a9e81612ea1565b82525050565b6000612ab082866128ae565b601482019150612ac08285612a7e565b602082019150612ad08284612a7e565b602082019150819050949350505050565b6000612aed828561296c565b9150612af9828461296c565b91508190509392505050565b6000612b10826129e3565b9150612b1c82846128e3565b60208201915081905092915050565b6000602082019050612b40600083018461289f565b92915050565b6000608082019050612b5b600083018761289f565b612b68602083018661289f565b612b756040830185612a6f565b8181036060830152612b8781846128fa565b905095945050505050565b6000602082019050612ba760008301846128c5565b92915050565b6000608082019050612bc260008301876128d4565b612bcf6020830186612a95565b612bdc60408301856128d4565b612be960608301846128d4565b95945050505050565b60006020820190508181036000830152612c0c8184612933565b905092915050565b60006020820190508181036000830152612c2d8161299d565b9050919050565b60006020820190508181036000830152612c4d816129c0565b9050919050565b60006020820190508181036000830152612c6d81612a06565b9050919050565b60006020820190508181036000830152612c8d81612a29565b9050919050565b60006020820190508181036000830152612cad81612a4c565b9050919050565b6000602082019050612cc96000830184612a6f565b92915050565b6000612cd9612cea565b9050612ce58282612f22565b919050565b6000604051905090565b600067ffffffffffffffff821115612d0f57612d0e613090565b5b612d18826130dd565b9050602081019050919050565b600067ffffffffffffffff821115612d4057612d3f613090565b5b612d49826130dd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612da482612e97565b9150612daf83612e97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612de457612de3612fd4565b5b828201905092915050565b6000612dfa82612e97565b9150612e0583612e97565b925082821015612e1857612e17612fd4565b5b828203905092915050565b6000612e2e82612e77565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612edb578082015181840152602081019050612ec0565b83811115612eea576000848401525b50505050565b60006002820490506001821680612f0857607f821691505b60208210811415612f1c57612f1b613032565b5b50919050565b612f2b826130dd565b810181811067ffffffffffffffff82111715612f4a57612f49613090565b5b80604052505050565b6000612f5e82612e97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f9157612f90612fd4565b5b600182019050919050565b6000612fa782612fb8565b9050919050565b6000819050919050565b6000612fc3826130ee565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61324681612e23565b811461325157600080fd5b50565b61325d81612e35565b811461326857600080fd5b50565b61327481612e4b565b811461327f57600080fd5b50565b61328b81612e97565b811461329657600080fd5b5056fea26469706673582212206a0c60fe6f97d6bc25d5ec698a9e9681ade49d357c6b0d68569314207399e3ab64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000270f0000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000fc06ad26bbdbaab2dd9784922dc039689f2f76390000000000000000000000000000000000000000000000001d6bc0c48bd40000000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f6170692e736861646f77616c7068612e78797a2f6d657461646174612f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636c0360eb116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd146104f1578063d5abeb011461052e578063e985e9c514610559578063f2fde38b1461059657610166565b806395d89b4114610474578063a22cb4651461049f578063b88d4fde146104c857610166565b80636c0360eb1461039757806370a08231146103c257806370f93ede146103ff578063715018a61461041b578063853828b6146104325780638da5cb5b1461044957610166565b806318160ddd1161012357806318160ddd1461028b57806323b872dd146102b65780633f1d72ba146102df57806342842e0e1461030857806355f804b3146103315780636352211e1461035a57610166565b806301ffc9a71461016b578063046dc166146101a857806306fdde03146101d15780630751e86b146101fc578063081812fc14610225578063095ea7b314610262575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d919061275b565b6105bf565b60405161019f9190612b92565b60405180910390f35b3480156101b457600080fd5b506101cf60048036038101906101ca9190612517565b610651565b005b3480156101dd57600080fd5b506101e6610704565b6040516101f39190612bf2565b60405180910390f35b34801561020857600080fd5b50610223600480360381019061021e91906126da565b610796565b005b34801561023157600080fd5b5061024c60048036038101906102479190612872565b6108a9565b6040516102599190612b2b565b60405180910390f35b34801561026e57600080fd5b506102896004803603810190610284919061269a565b610928565b005b34801561029757600080fd5b506102a0610a6c565b6040516102ad9190612cb4565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612584565b610a83565b005b3480156102eb57600080fd5b506103066004803603810190610301919061269a565b610da8565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612584565b610e0c565b005b34801561033d57600080fd5b5061035860048036038101906103539190612829565b610e2c565b005b34801561036657600080fd5b50610381600480360381019061037c9190612872565b610e4e565b60405161038e9190612b2b565b60405180910390f35b3480156103a357600080fd5b506103ac610e60565b6040516103b99190612bf2565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190612517565b610eee565b6040516103f69190612cb4565b60405180910390f35b610419600480360381019061041491906127b5565b610fa7565b005b34801561042757600080fd5b506104306110d8565b005b34801561043e57600080fd5b506104476110ec565b005b34801561045557600080fd5b5061045e6112d3565b60405161046b9190612b2b565b60405180910390f35b34801561048057600080fd5b506104896112fd565b6040516104969190612bf2565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c1919061265a565b61138f565b005b3480156104d457600080fd5b506104ef60048036038101906104ea91906125d7565b61149a565b005b3480156104fd57600080fd5b5061051860048036038101906105139190612872565b61150d565b6040516105259190612bf2565b60405180910390f35b34801561053a57600080fd5b506105436115ac565b6040516105509190612cb4565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190612544565b6115b2565b60405161058d9190612b92565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612517565b611646565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061064a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6106596116ca565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106c0576040517f746ef87300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606002805461071390612ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461073f90612ef0565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b61079e6116ca565b6000805b838390508110156107e7578383828181106107c0576107bf613061565b5b90506020020135826107d29190612d99565b915080806107df90612f53565b9150506107a2565b50600e54816107f4610a6c565b6107fe9190612d99565b1115610836576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b858590508110156108a15761088e86868381811061085a57610859613061565b5b905060200201602081019061086f9190612517565b85858481811061088257610881613061565b5b90506020020135611748565b808061089990612f53565b915050610839565b505050505050565b60006108b482611905565b6108ea576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093382610e4e565b90508073ffffffffffffffffffffffffffffffffffffffff16610954611964565b73ffffffffffffffffffffffffffffffffffffffff16146109b7576109808161097b611964565b6115b2565b6109b6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a7661196c565b6001546000540303905090565b6000610a8e82611971565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610af5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b0184611a3f565b91509150610b178187610b12611964565b611a66565b610b6357610b2c86610b27611964565b6115b2565b610b62576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bca576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bd78686866001611aaa565b8015610be257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cb085610c8c888887611ab0565b7c020000000000000000000000000000000000000000000000000000000017611ad8565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d38576000600185019050600060046000838152602001908152602001600020541415610d36576000548114610d35578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610da08686866001611b03565b505050505050565b610db06116ca565b600e5481610dbc610a6c565b610dc69190612d99565b1115610dfe576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e088282611748565b5050565b610e278383836040518060200160405280600081525061149a565b505050565b610e346116ca565b80600d9080519060200190610e4a929190612229565b5050565b6000610e5982611971565b9050919050565b600d8054610e6d90612ef0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9990612ef0565b8015610ee65780601f10610ebb57610100808354040283529160200191610ee6565b820191906000526020600020905b815481529060010190602001808311610ec957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f56576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ff733348387878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611b09565b61102d576040517fc1606c2f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e5482611039610a6c565b6110439190612d99565b111561107b576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808261108633611baf565b6110909190612d99565b11156110c8576040517fd58a411000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110d23383611748565b50505050565b6110e06116ca565b6110ea6000611c06565b565b6110f46116ca565b6000479050600b54600c54101561128857600c54600b546111159190612def565b8110156111a357600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611184573d6000803e3d6000fd5b5080600c60008282546111979190612d99565b92505081905550611283565b6000600c54600b546111b59190612def565b9050600081836111c59190612def565b9050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561122f573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611276573d6000803e3d6000fd5b50600b54600c8190555050505b6112d0565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112ce573d6000803e3d6000fd5b505b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461130c90612ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461133890612ef0565b80156113855780601f1061135a57610100808354040283529160200191611385565b820191906000526020600020905b81548152906001019060200180831161136857829003601f168201915b5050505050905090565b806007600061139c611964565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611449611964565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161148e9190612b92565b60405180910390a35050565b6114a5848484610a83565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611507576114d084848484611ccc565b611506576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061151882611905565b61154e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611558611e2c565b905060008151141561157957604051806020016040528060008152506115a4565b8061158384611ebe565b604051602001611594929190612ae1565b6040516020818303038152906040525b915050919050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61164e6116ca565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590612c54565b60405180910390fd5b6116c781611c06565b50565b6116d2611f0e565b73ffffffffffffffffffffffffffffffffffffffff166116f06112d3565b73ffffffffffffffffffffffffffffffffffffffff1614611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90612c94565b60405180910390fd5b565b6000805490506000821415611789576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117966000848385611aaa565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061180d836117fe6000866000611ab0565b61180785611f16565b17611ad8565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146118ae57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611873565b5060008214156118ea576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506119006000848385611b03565b505050565b60008161191061196c565b1115801561191f575060005482105b801561195d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061198061196c565b11611a0857600054811015611a075760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a05575b60008114156119fb5760046000836001900393508381526020019081526020016000205490506119d0565b8092505050611a3a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ac7868684611f26565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080858585604051602001611b2193929190612aa4565b604051602081830303815290604052805190602001209050611b5483611b4683611f2f565b611f5f90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cf2611964565b8786866040518563ffffffff1660e01b8152600401611d149493929190612b46565b602060405180830381600087803b158015611d2e57600080fd5b505af1925050508015611d5f57506040513d601f19601f82011682018060405250810190611d5c9190612788565b60015b611dd9573d8060008114611d8f576040519150601f19603f3d011682016040523d82523d6000602084013e611d94565b606091505b50600081511415611dd1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611e3b90612ef0565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6790612ef0565b8015611eb45780601f10611e8957610100808354040283529160200191611eb4565b820191906000526020600020905b815481529060010190602001808311611e9757829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611efa57600183039250600a81066030018353600a8104905080611ef557611efa565b611ecf565b508181036020830392508083525050919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b600081604051602001611f429190612b05565b604051602081830303815290604052805190602001209050919050565b6000806000611f6e8585611f86565b91509150611f7b81611fd8565b819250505092915050565b600080604183511415611fc85760008060006020860151925060408601519150606086015160001a9050611fbc87828585612146565b94509450505050611fd1565b60006002915091505b9250929050565b60006004811115611fec57611feb613003565b5b816004811115611fff57611ffe613003565b5b141561200a57612143565b6001600481111561201e5761201d613003565b5b81600481111561203157612030613003565b5b1415612072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206990612c14565b60405180910390fd5b6002600481111561208657612085613003565b5b81600481111561209957612098613003565b5b14156120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d190612c34565b60405180910390fd5b600360048111156120ee576120ed613003565b5b81600481111561210157612100613003565b5b1415612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990612c74565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612181576000600391509150612220565b6000600187878787604051600081526020016040526040516121a69493929190612bad565b6020604051602081039080840390855afa1580156121c8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561221757600060019250925050612220565b80600092509250505b94509492505050565b82805461223590612ef0565b90600052602060002090601f016020900481019282612257576000855561229e565b82601f1061227057805160ff191683800117855561229e565b8280016001018555821561229e579182015b8281111561229d578251825591602001919060010190612282565b5b5090506122ab91906122af565b5090565b5b808211156122c85760008160009055506001016122b0565b5090565b60006122df6122da84612cf4565b612ccf565b9050828152602081018484840111156122fb576122fa6130ce565b5b612306848285612eae565b509392505050565b600061232161231c84612d25565b612ccf565b90508281526020810184848401111561233d5761233c6130ce565b5b612348848285612eae565b509392505050565b60008135905061235f8161323d565b92915050565b60008083601f84011261237b5761237a6130c4565b5b8235905067ffffffffffffffff811115612398576123976130bf565b5b6020830191508360208202830111156123b4576123b36130c9565b5b9250929050565b60008083601f8401126123d1576123d06130c4565b5b8235905067ffffffffffffffff8111156123ee576123ed6130bf565b5b60208301915083602082028301111561240a576124096130c9565b5b9250929050565b60008135905061242081613254565b92915050565b6000813590506124358161326b565b92915050565b60008151905061244a8161326b565b92915050565b60008083601f840112612466576124656130c4565b5b8235905067ffffffffffffffff811115612483576124826130bf565b5b60208301915083600182028301111561249f5761249e6130c9565b5b9250929050565b600082601f8301126124bb576124ba6130c4565b5b81356124cb8482602086016122cc565b91505092915050565b600082601f8301126124e9576124e86130c4565b5b81356124f984826020860161230e565b91505092915050565b60008135905061251181613282565b92915050565b60006020828403121561252d5761252c6130d8565b5b600061253b84828501612350565b91505092915050565b6000806040838503121561255b5761255a6130d8565b5b600061256985828601612350565b925050602061257a85828601612350565b9150509250929050565b60008060006060848603121561259d5761259c6130d8565b5b60006125ab86828701612350565b93505060206125bc86828701612350565b92505060406125cd86828701612502565b9150509250925092565b600080600080608085870312156125f1576125f06130d8565b5b60006125ff87828801612350565b945050602061261087828801612350565b935050604061262187828801612502565b925050606085013567ffffffffffffffff811115612642576126416130d3565b5b61264e878288016124a6565b91505092959194509250565b60008060408385031215612671576126706130d8565b5b600061267f85828601612350565b925050602061269085828601612411565b9150509250929050565b600080604083850312156126b1576126b06130d8565b5b60006126bf85828601612350565b92505060206126d085828601612502565b9150509250929050565b600080600080604085870312156126f4576126f36130d8565b5b600085013567ffffffffffffffff811115612712576127116130d3565b5b61271e87828801612365565b9450945050602085013567ffffffffffffffff811115612741576127406130d3565b5b61274d878288016123bb565b925092505092959194509250565b600060208284031215612771576127706130d8565b5b600061277f84828501612426565b91505092915050565b60006020828403121561279e5761279d6130d8565b5b60006127ac8482850161243b565b91505092915050565b600080600080606085870312156127cf576127ce6130d8565b5b600085013567ffffffffffffffff8111156127ed576127ec6130d3565b5b6127f987828801612450565b9450945050602061280c87828801612502565b925050604061281d87828801612502565b91505092959194509250565b60006020828403121561283f5761283e6130d8565b5b600082013567ffffffffffffffff81111561285d5761285c6130d3565b5b612869848285016124d4565b91505092915050565b600060208284031215612888576128876130d8565b5b600061289684828501612502565b91505092915050565b6128a881612e23565b82525050565b6128bf6128ba82612e23565b612f9c565b82525050565b6128ce81612e35565b82525050565b6128dd81612e41565b82525050565b6128f46128ef82612e41565b612fae565b82525050565b600061290582612d56565b61290f8185612d6c565b935061291f818560208601612ebd565b612928816130dd565b840191505092915050565b600061293e82612d61565b6129488185612d7d565b9350612958818560208601612ebd565b612961816130dd565b840191505092915050565b600061297782612d61565b6129818185612d8e565b9350612991818560208601612ebd565b80840191505092915050565b60006129aa601883612d7d565b91506129b5826130fb565b602082019050919050565b60006129cd601f83612d7d565b91506129d882613124565b602082019050919050565b60006129f0601c83612d8e565b91506129fb8261314d565b601c82019050919050565b6000612a13602683612d7d565b9150612a1e82613176565b604082019050919050565b6000612a36602283612d7d565b9150612a41826131c5565b604082019050919050565b6000612a59602083612d7d565b9150612a6482613214565b602082019050919050565b612a7881612e97565b82525050565b612a8f612a8a82612e97565b612fca565b82525050565b612a9e81612ea1565b82525050565b6000612ab082866128ae565b601482019150612ac08285612a7e565b602082019150612ad08284612a7e565b602082019150819050949350505050565b6000612aed828561296c565b9150612af9828461296c565b91508190509392505050565b6000612b10826129e3565b9150612b1c82846128e3565b60208201915081905092915050565b6000602082019050612b40600083018461289f565b92915050565b6000608082019050612b5b600083018761289f565b612b68602083018661289f565b612b756040830185612a6f565b8181036060830152612b8781846128fa565b905095945050505050565b6000602082019050612ba760008301846128c5565b92915050565b6000608082019050612bc260008301876128d4565b612bcf6020830186612a95565b612bdc60408301856128d4565b612be960608301846128d4565b95945050505050565b60006020820190508181036000830152612c0c8184612933565b905092915050565b60006020820190508181036000830152612c2d8161299d565b9050919050565b60006020820190508181036000830152612c4d816129c0565b9050919050565b60006020820190508181036000830152612c6d81612a06565b9050919050565b60006020820190508181036000830152612c8d81612a29565b9050919050565b60006020820190508181036000830152612cad81612a4c565b9050919050565b6000602082019050612cc96000830184612a6f565b92915050565b6000612cd9612cea565b9050612ce58282612f22565b919050565b6000604051905090565b600067ffffffffffffffff821115612d0f57612d0e613090565b5b612d18826130dd565b9050602081019050919050565b600067ffffffffffffffff821115612d4057612d3f613090565b5b612d49826130dd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612da482612e97565b9150612daf83612e97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612de457612de3612fd4565b5b828201905092915050565b6000612dfa82612e97565b9150612e0583612e97565b925082821015612e1857612e17612fd4565b5b828203905092915050565b6000612e2e82612e77565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612edb578082015181840152602081019050612ec0565b83811115612eea576000848401525b50505050565b60006002820490506001821680612f0857607f821691505b60208210811415612f1c57612f1b613032565b5b50919050565b612f2b826130dd565b810181811067ffffffffffffffff82111715612f4a57612f49613090565b5b80604052505050565b6000612f5e82612e97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f9157612f90612fd4565b5b600182019050919050565b6000612fa782612fb8565b9050919050565b6000819050919050565b6000612fc3826130ee565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61324681612e23565b811461325157600080fd5b50565b61325d81612e35565b811461326857600080fd5b50565b61327481612e4b565b811461327f57600080fd5b50565b61328b81612e97565b811461329657600080fd5b5056fea26469706673582212206a0c60fe6f97d6bc25d5ec698a9e9681ade49d357c6b0d68569314207399e3ab64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000270f0000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000fc06ad26bbdbaab2dd9784922dc039689f2f76390000000000000000000000000000000000000000000000001d6bc0c48bd40000000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f6170692e736861646f77616c7068612e78797a2f6d657461646174612f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : newMaxSupply (uint256): 9999
Arg [1] : newSignerAddress (address): 0x6B2341bf6d8E7f914a1aFEe9fBDC7449f875f61f
Arg [2] : newBaseURI (string): https://api.shadowalpha.xyz/metadata/
Arg [3] : newAuthorWallet (address): 0xfC06Ad26bBdBaaB2Dd9784922dC039689F2F7639
Arg [4] : newAuthorMaxPayment (uint256): 2120000000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000270f
Arg [1] : 0000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000fc06ad26bbdbaab2dd9784922dc039689f2f7639
Arg [4] : 0000000000000000000000000000000000000000000000001d6bc0c48bd40000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [6] : 68747470733a2f2f6170692e736861646f77616c7068612e78797a2f6d657461
Arg [7] : 646174612f000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

276:3956:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9367:639:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2966:199:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10269:100:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2407:464:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16752:218:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16193:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6020:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20391:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2131:186:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23304:185:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3248:104:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11662:152:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;513:21:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7204:233:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1136:415:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1884:103:4;;;;;;;;;;;;;:::i;:::-;;3422:805:5;;;;;;;;;;;;;:::i;:::-;;1236:87:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10445:104:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17310:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24087:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10655:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;541:24:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17701:164:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2142:201:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9367:639:2;9452:4;9791:10;9776:25;;:11;:25;;;;:102;;;;9868:10;9853:25;;:11;:25;;;;9776:102;:179;;;;9945:10;9930:25;;:11;:25;;;;9776:179;9756:199;;9367:639;;;:::o;2966:199:5:-;1122:13:4;:11;:13::i;:::-;3080:1:5::1;3052:30;;:16;:30;;;3048:65;;;3092:21;;;;;;;;;;;;;;3048:65;3141:16;3124:14;;:33;;;;;;;;;;;;;;;;;;2966:199:::0;:::o;10269:100:2:-;10323:13;10356:5;10349:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10269:100;:::o;2407:464:5:-;1122:13:4;:11;:13::i;:::-;2522:21:5::1;2565:9:::0;2560:106:::1;2584:10;;:17;;2580:1;:21;2560:106;;;2641:10;;2652:1;2641:13;;;;;;;:::i;:::-;;;;;;;;2624:30;;;;;:::i;:::-;;;2603:3;;;;;:::i;:::-;;;;2560:106;;;;2714:9;;2698:13;2682;:11;:13::i;:::-;:29;;;;:::i;:::-;:41;2678:64;;;2733:9;;;;;;;;;;;;;;2678:64;2760:9;2755:109;2779:9;;:16;;2775:1;:20;2755:109;;;2818:34;2824:9;;2834:1;2824:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2838:10;;2849:1;2838:13;;;;;;;:::i;:::-;;;;;;;;2818:5;:34::i;:::-;2797:3;;;;;:::i;:::-;;;;2755:109;;;;2509:362;2407:464:::0;;;;:::o;16752:218:2:-;16828:7;16853:16;16861:7;16853;:16::i;:::-;16848:64;;16878:34;;;;;;;;;;;;;;16848:64;16932:15;:24;16948:7;16932:24;;;;;;;;;;;:30;;;;;;;;;;;;16925:37;;16752:218;;;:::o;16193:400::-;16274:13;16290:16;16298:7;16290;:16::i;:::-;16274:32;;16346:5;16323:28;;:19;:17;:19::i;:::-;:28;;;16319:175;;16371:44;16388:5;16395:19;:17;:19::i;:::-;16371:16;:44::i;:::-;16366:128;;16443:35;;;;;;;;;;;;;;16366:128;16319:175;16539:2;16506:15;:24;16522:7;16506:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16577:7;16573:2;16557:28;;16566:5;16557:28;;;;;;;;;;;;16263:330;16193:400;;:::o;6020:323::-;6081:7;6309:15;:13;:15::i;:::-;6294:12;;6278:13;;:28;:46;6271:53;;6020:323;:::o;20391:2817::-;20525:27;20555;20574:7;20555:18;:27::i;:::-;20525:57;;20640:4;20599:45;;20615:19;20599:45;;;20595:86;;20653:28;;;;;;;;;;;;;;20595:86;20695:27;20724:23;20751:35;20778:7;20751:26;:35::i;:::-;20694:92;;;;20886:68;20911:15;20928:4;20934:19;:17;:19::i;:::-;20886:24;:68::i;:::-;20881:180;;20974:43;20991:4;20997:19;:17;:19::i;:::-;20974:16;:43::i;:::-;20969:92;;21026:35;;;;;;;;;;;;;;20969:92;20881:180;21092:1;21078:16;;:2;:16;;;21074:52;;;21103:23;;;;;;;;;;;;;;21074:52;21139:43;21161:4;21167:2;21171:7;21180:1;21139:21;:43::i;:::-;21275:15;21272:160;;;21415:1;21394:19;21387:30;21272:160;21812:18;:24;21831:4;21812:24;;;;;;;;;;;;;;;;21810:26;;;;;;;;;;;;21881:18;:22;21900:2;21881:22;;;;;;;;;;;;;;;;21879:24;;;;;;;;;;;22203:146;22240:2;22289:45;22304:4;22310:2;22314:19;22289:14;:45::i;:::-;2419:8;22261:73;22203:18;:146::i;:::-;22174:17;:26;22192:7;22174:26;;;;;;;;;;;:175;;;;22520:1;2419:8;22469:19;:47;:52;22465:627;;;22542:19;22574:1;22564:7;:11;22542:33;;22731:1;22697:17;:30;22715:11;22697:30;;;;;;;;;;;;:35;22693:384;;;22835:13;;22820:11;:28;22816:242;;23015:19;22982:17;:30;23000:11;22982:30;;;;;;;;;;;:52;;;;22816:242;22693:384;22523:569;22465:627;23139:7;23135:2;23120:27;;23129:4;23120:27;;;;;;;;;;;;23158:42;23179:4;23185:2;23189:7;23198:1;23158:20;:42::i;:::-;20514:2694;;;20391:2817;;;:::o;2131:186:5:-;1122:13:4;:11;:13::i;:::-;2245:9:5::1;;2234:8;2218:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;2214:59;;;2264:9;;;;;;;;;;;;;;2214:59;2284:25;2290:8;2300;2284:5;:25::i;:::-;2131:186:::0;;:::o;23304:185:2:-;23442:39;23459:4;23465:2;23469:7;23442:39;;;;;;;;;;;;:16;:39::i;:::-;23304:185;;;:::o;3248:104:5:-;1122:13:4;:11;:13::i;:::-;3334:10:5::1;3324:7;:20;;;;;;;;;;;;:::i;:::-;;3248:104:::0;:::o;11662:152:2:-;11734:7;11777:27;11796:7;11777:18;:27::i;:::-;11754:52;;11662:152;;;:::o;513:21:5:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7204:233:2:-;7276:7;7317:1;7300:19;;:5;:19;;;7296:60;;;7328:28;;;;;;;;;;;;;;7296:60;1363:13;7374:18;:25;7393:5;7374:25;;;;;;;;;;;;;;;;:55;7367:62;;7204:233;;;:::o;1136:415:5:-;1248:57;1259:10;1271:9;1282:11;1295:9;;1248:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;:57::i;:::-;1243:92;;1315:20;;;;;;;;;;;;;;1243:92;1377:9;;1366:8;1350:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;1346:59;;;1396:9;;;;;;;;;;;;;;1346:59;1459:11;1448:8;1420:25;1434:10;1420:13;:25::i;:::-;:36;;;;:::i;:::-;:50;1416:87;;;1480:23;;;;;;;;;;;;;;1416:87;1516:27;1522:10;1534:8;1516:5;:27::i;:::-;1136:415;;;;:::o;1884:103:4:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;3422:805:5:-;1122:13:4;:11;:13::i;:::-;3477:15:5::1;3495:21;3477:39;;3554:17;;3533:18;;:38;3529:681;;;3623:18;;3603:17;;:38;;;;:::i;:::-;3593:7;:48;3589:538;;;3671:13;;;;;;;;;;;3663:31;;:40;3695:7;3663:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3744:7;3722:18;;:29;;;;;;;:::i;:::-;;;;;;;;3589:538;;;3792:25;3840:18;;3820:17;;:38;;;;:::i;:::-;3792:66;;3877:16;3906:17;3896:7;:27;;;;:::i;:::-;3877:46;;3952:13;;;;;;;;;;;3944:31;;:50;3976:17;3944:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4021:10;4013:28;;:38;4042:8;4013:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4093:17;;4072:18;:38;;;;3773:354;;3589:538;3529:681;;;4169:10;4161:28;;:37;4190:7;4161:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3529:681;3464:763;3422:805::o:0;1236:87:4:-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;10445:104:2:-;10501:13;10534:7;10527:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10445:104;:::o;17310:234::-;17457:8;17405:18;:39;17424:19;:17;:19::i;:::-;17405:39;;;;;;;;;;;;;;;:49;17445:8;17405:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17517:8;17481:55;;17496:19;:17;:19::i;:::-;17481:55;;;17527:8;17481:55;;;;;;:::i;:::-;;;;;;;;17310:234;;:::o;24087:399::-;24254:31;24267:4;24273:2;24277:7;24254:12;:31::i;:::-;24318:1;24300:2;:14;;;:19;24296:183;;24339:56;24370:4;24376:2;24380:7;24389:5;24339:30;:56::i;:::-;24334:145;;24423:40;;;;;;;;;;;;;;24334:145;24296:183;24087:399;;;;:::o;10655:318::-;10728:13;10759:16;10767:7;10759;:16::i;:::-;10754:59;;10784:29;;;;;;;;;;;;;;10754:59;10826:21;10850:10;:8;:10::i;:::-;10826:34;;10903:1;10884:7;10878:21;:26;;:87;;;;;;;;;;;;;;;;;10931:7;10940:18;10950:7;10940:9;:18::i;:::-;10914:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10878:87;10871:94;;;10655:318;;;:::o;541:24:5:-;;;;:::o;17701:164:2:-;17798:4;17822:18;:25;17841:5;17822:25;;;;;;;;;;;;;;;:35;17848:8;17822:35;;;;;;;;;;;;;;;;;;;;;;;;;17815:42;;17701:164;;;;:::o;2142:201:4:-;1122:13;:11;:13::i;:::-;2251:1:::1;2231:22;;:8;:22;;;;2223:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:28;2326:8;2307:18;:28::i;:::-;2142:201:::0;:::o;1401:132::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1401:132::o;27748:2720:2:-;27821:20;27844:13;;27821:36;;27884:1;27872:8;:13;27868:44;;;27894:18;;;;;;;;;;;;;;27868:44;27925:61;27955:1;27959:2;27963:12;27977:8;27925:21;:61::i;:::-;28469:1;1501:2;28439:1;:26;;28438:32;28426:8;:45;28400:18;:22;28419:2;28400:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28748:139;28785:2;28839:33;28862:1;28866:2;28870:1;28839:14;:33::i;:::-;28806:30;28827:8;28806:20;:30::i;:::-;:66;28748:18;:139::i;:::-;28714:17;:31;28732:12;28714:31;;;;;;;;;;;:173;;;;28904:16;28935:11;28964:8;28949:12;:23;28935:37;;29485:16;29481:2;29477:25;29465:37;;29857:12;29817:8;29776:1;29714:25;29655:1;29594;29567:335;29982:1;29968:12;29964:20;29922:346;30023:3;30014:7;30011:16;29922:346;;30241:7;30231:8;30228:1;30201:25;30198:1;30195;30190:59;30076:1;30067:7;30063:15;30052:26;;29922:346;;;29926:77;30313:1;30301:8;:13;30297:45;;;30323:19;;;;;;;;;;;;;;30297:45;30375:3;30359:13;:19;;;;28174:2216;;30400:60;30429:1;30433:2;30437:12;30451:8;30400:20;:60::i;:::-;27810:2658;27748:2720;;:::o;18123:282::-;18188:4;18244:7;18225:15;:13;:15::i;:::-;:26;;:66;;;;;18278:13;;18268:7;:23;18225:66;:153;;;;;18377:1;2139:8;18329:17;:26;18347:7;18329:26;;;;;;;;;;;;:44;:49;18225:153;18205:173;;18123:282;;;:::o;40161:105::-;40221:7;40248:10;40241:17;;40161:105;:::o;5536:92::-;5592:7;5536:92;:::o;12817:1275::-;12884:7;12904:12;12919:7;12904:22;;12987:4;12968:15;:13;:15::i;:::-;:23;12964:1061;;13021:13;;13014:4;:20;13010:1015;;;13059:14;13076:17;:23;13094:4;13076:23;;;;;;;;;;;;13059:40;;13193:1;2139:8;13165:6;:24;:29;13161:845;;;13830:113;13847:1;13837:6;:11;13830:113;;;13890:17;:25;13908:6;;;;;;;13890:25;;;;;;;;;;;;13881:34;;13830:113;;;13976:6;13969:13;;;;;;13161:845;13036:989;13010:1015;12964:1061;14053:31;;;;;;;;;;;;;;12817:1275;;;;:::o;19286:485::-;19388:27;19417:23;19458:38;19499:15;:24;19515:7;19499:24;;;;;;;;;;;19458:65;;19676:18;19653:41;;19733:19;19727:26;19708:45;;19638:126;19286:485;;;:::o;18514:659::-;18663:11;18828:16;18821:5;18817:28;18808:37;;18988:16;18977:9;18973:32;18960:45;;19138:15;19127:9;19124:30;19116:5;19105:9;19102:20;19099:56;19089:66;;18514:659;;;;;:::o;25148:159::-;;;;;:::o;39470:311::-;39605:7;39625:16;2543:3;39651:19;:41;;39625:68;;2543:3;39719:31;39730:4;39736:2;39740:9;39719:10;:31::i;:::-;39711:40;;:62;;39704:69;;;39470:311;;;;;:::o;14640:450::-;14720:14;14888:16;14881:5;14877:28;14868:37;;15065:5;15051:11;15026:23;15022:41;15019:52;15012:5;15009:63;14999:73;;14640:450;;;;:::o;25972:158::-;;;;;:::o;1588:319:5:-;1710:4;1727:19;1776:6;1784:9;1795:11;1759:48;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1749:59;;;;;;1727:81;;1844:55;1889:9;1844:36;:11;:34;:36::i;:::-;:44;;:55;;;;:::i;:::-;1826:73;;:14;;;;;;;;;;;:73;;;1819:80;;;1588:319;;;;;;:::o;7519:178:2:-;7580:7;1363:13;1501:2;7608:18;:25;7627:5;7608:25;;;;;;;;;;;;;;;;:50;;7607:82;7600:89;;7519:178;;;:::o;2503:191:4:-;2577:16;2596:6;;;;;;;;;;;2577:25;;2622:8;2613:6;;:17;;;;;;;;;;;;;;;;;;2677:8;2646:40;;2667:8;2646:40;;;;;;;;;;;;2566:128;2503:191;:::o;26570:716:2:-;26733:4;26779:2;26754:45;;;26800:19;:17;:19::i;:::-;26821:4;26827:7;26836:5;26754:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26750:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27054:1;27037:6;:13;:18;27033:235;;;27083:40;;;;;;;;;;;;;;27033:235;27226:6;27220:13;27211:6;27207:2;27203:15;27196:38;26750:529;26923:54;;;26913:64;;;:6;:64;;;;26906:71;;;26570:716;;;;;;:::o;1915:108:5:-;1975:13;2008:7;2001:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1915:108;:::o;40368:1582:2:-;40433:17;40859:4;40852;40846:11;40842:22;40835:29;;40951:3;40945:4;40938:17;41057:3;41296:5;41278:428;41304:1;41278:428;;;41344:1;41339:3;41335:11;41328:18;;41515:2;41509:4;41505:13;41501:2;41497:22;41492:3;41484:36;41609:2;41603:4;41599:13;41591:21;;41676:4;41666:25;;41684:5;;41666:25;41278:428;;;41282:21;41745:3;41740;41736:13;41860:4;41855:3;41851:14;41844:21;;41925:6;41920:3;41913:19;40472:1471;;40368:1582;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;15192:324:2:-;15262:14;15495:1;15485:8;15482:15;15456:24;15452:46;15442:56;;15192:324;;;:::o;39171:147::-;39308:6;39171:147;;;;;:::o;7437:269:1:-;7506:7;7692:4;7639:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;7629:69;;;;;;7622:76;;7437:269;;;:::o;3747:231::-;3825:7;3846:17;3865:18;3887:27;3898:4;3904:9;3887:10;:27::i;:::-;3845:69;;;;3925:18;3937:5;3925:11;:18::i;:::-;3961:9;3954:16;;;;3747:231;;;;:::o;2198:747::-;2279:7;2288:12;2337:2;2317:9;:16;:22;2313:625;;;2356:9;2380;2404:7;2661:4;2650:9;2646:20;2640:27;2635:32;;2711:4;2700:9;2696:20;2690:27;2685:32;;2769:4;2758:9;2754:20;2748:27;2745:1;2740:36;2735:41;;2812:25;2823:4;2829:1;2832;2835;2812:10;:25::i;:::-;2805:32;;;;;;;;;2313:625;2886:1;2890:35;2870:56;;;;2198:747;;;;;;:::o;591:521::-;669:20;660:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;656:449;;;706:7;;656:449;767:29;758:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;754:351;;;813:34;;;;;;;;;;:::i;:::-;;;;;;;;754:351;878:35;869:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;865:240;;;930:41;;;;;;;;;;:::i;:::-;;;;;;;;865:240;1002:30;993:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;989:116;;;1049:44;;;;;;;;;;:::i;:::-;;;;;;;;989:116;591:521;;:::o;5199:1520::-;5330:7;5339:12;6264:66;6259:1;6251:10;;:79;6247:163;;;6363:1;6367:30;6347:51;;;;;;6247:163;6507:14;6524:24;6534:4;6540:1;6543;6546;6524:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6507:41;;6581:1;6563:20;;:6;:20;;;6559:103;;;6616:1;6620:29;6600:50;;;;;;;6559:103;6682:6;6690:20;6674:37;;;;;5199:1520;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:7:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:137::-;2352:5;2390:6;2377:20;2368:29;;2406:32;2432:5;2406:32;:::i;:::-;2307:137;;;;:::o;2450:141::-;2506:5;2537:6;2531:13;2522:22;;2553:32;2579:5;2553:32;:::i;:::-;2450:141;;;;:::o;2610:552::-;2667:8;2677:6;2727:3;2720:4;2712:6;2708:17;2704:27;2694:122;;2735:79;;:::i;:::-;2694:122;2848:6;2835:20;2825:30;;2878:18;2870:6;2867:30;2864:117;;;2900:79;;:::i;:::-;2864:117;3014:4;3006:6;3002:17;2990:29;;3068:3;3060:4;3052:6;3048:17;3038:8;3034:32;3031:41;3028:128;;;3075:79;;:::i;:::-;3028:128;2610:552;;;;;:::o;3181:338::-;3236:5;3285:3;3278:4;3270:6;3266:17;3262:27;3252:122;;3293:79;;:::i;:::-;3252:122;3410:6;3397:20;3435:78;3509:3;3501:6;3494:4;3486:6;3482:17;3435:78;:::i;:::-;3426:87;;3242:277;3181:338;;;;:::o;3539:340::-;3595:5;3644:3;3637:4;3629:6;3625:17;3621:27;3611:122;;3652:79;;:::i;:::-;3611:122;3769:6;3756:20;3794:79;3869:3;3861:6;3854:4;3846:6;3842:17;3794:79;:::i;:::-;3785:88;;3601:278;3539:340;;;;:::o;3885:139::-;3931:5;3969:6;3956:20;3947:29;;3985:33;4012:5;3985:33;:::i;:::-;3885:139;;;;:::o;4030:329::-;4089:6;4138:2;4126:9;4117:7;4113:23;4109:32;4106:119;;;4144:79;;:::i;:::-;4106:119;4264:1;4289:53;4334:7;4325:6;4314:9;4310:22;4289:53;:::i;:::-;4279:63;;4235:117;4030:329;;;;:::o;4365:474::-;4433:6;4441;4490:2;4478:9;4469:7;4465:23;4461:32;4458:119;;;4496:79;;:::i;:::-;4458:119;4616:1;4641:53;4686:7;4677:6;4666:9;4662:22;4641:53;:::i;:::-;4631:63;;4587:117;4743:2;4769:53;4814:7;4805:6;4794:9;4790:22;4769:53;:::i;:::-;4759:63;;4714:118;4365:474;;;;;:::o;4845:619::-;4922:6;4930;4938;4987:2;4975:9;4966:7;4962:23;4958:32;4955:119;;;4993:79;;:::i;:::-;4955:119;5113:1;5138:53;5183:7;5174:6;5163:9;5159:22;5138:53;:::i;:::-;5128:63;;5084:117;5240:2;5266:53;5311:7;5302:6;5291:9;5287:22;5266:53;:::i;:::-;5256:63;;5211:118;5368:2;5394:53;5439:7;5430:6;5419:9;5415:22;5394:53;:::i;:::-;5384:63;;5339:118;4845:619;;;;;:::o;5470:943::-;5565:6;5573;5581;5589;5638:3;5626:9;5617:7;5613:23;5609:33;5606:120;;;5645:79;;:::i;:::-;5606:120;5765:1;5790:53;5835:7;5826:6;5815:9;5811:22;5790:53;:::i;:::-;5780:63;;5736:117;5892:2;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5863:118;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6176:2;6165:9;6161:18;6148:32;6207:18;6199:6;6196:30;6193:117;;;6229:79;;:::i;:::-;6193:117;6334:62;6388:7;6379:6;6368:9;6364:22;6334:62;:::i;:::-;6324:72;;6119:287;5470:943;;;;;;;:::o;6419:468::-;6484:6;6492;6541:2;6529:9;6520:7;6516:23;6512:32;6509:119;;;6547:79;;:::i;:::-;6509:119;6667:1;6692:53;6737:7;6728:6;6717:9;6713:22;6692:53;:::i;:::-;6682:63;;6638:117;6794:2;6820:50;6862:7;6853:6;6842:9;6838:22;6820:50;:::i;:::-;6810:60;;6765:115;6419:468;;;;;:::o;6893:474::-;6961:6;6969;7018:2;7006:9;6997:7;6993:23;6989:32;6986:119;;;7024:79;;:::i;:::-;6986:119;7144:1;7169:53;7214:7;7205:6;7194:9;7190:22;7169:53;:::i;:::-;7159:63;;7115:117;7271:2;7297:53;7342:7;7333:6;7322:9;7318:22;7297:53;:::i;:::-;7287:63;;7242:118;6893:474;;;;;:::o;7373:934::-;7495:6;7503;7511;7519;7568:2;7556:9;7547:7;7543:23;7539:32;7536:119;;;7574:79;;:::i;:::-;7536:119;7722:1;7711:9;7707:17;7694:31;7752:18;7744:6;7741:30;7738:117;;;7774:79;;:::i;:::-;7738:117;7887:80;7959:7;7950:6;7939:9;7935:22;7887:80;:::i;:::-;7869:98;;;;7665:312;8044:2;8033:9;8029:18;8016:32;8075:18;8067:6;8064:30;8061:117;;;8097:79;;:::i;:::-;8061:117;8210:80;8282:7;8273:6;8262:9;8258:22;8210:80;:::i;:::-;8192:98;;;;7987:313;7373:934;;;;;;;:::o;8313:327::-;8371:6;8420:2;8408:9;8399:7;8395:23;8391:32;8388:119;;;8426:79;;:::i;:::-;8388:119;8546:1;8571:52;8615:7;8606:6;8595:9;8591:22;8571:52;:::i;:::-;8561:62;;8517:116;8313:327;;;;:::o;8646:349::-;8715:6;8764:2;8752:9;8743:7;8739:23;8735:32;8732:119;;;8770:79;;:::i;:::-;8732:119;8890:1;8915:63;8970:7;8961:6;8950:9;8946:22;8915:63;:::i;:::-;8905:73;;8861:127;8646:349;;;;:::o;9001:817::-;9089:6;9097;9105;9113;9162:2;9150:9;9141:7;9137:23;9133:32;9130:119;;;9168:79;;:::i;:::-;9130:119;9316:1;9305:9;9301:17;9288:31;9346:18;9338:6;9335:30;9332:117;;;9368:79;;:::i;:::-;9332:117;9481:64;9537:7;9528:6;9517:9;9513:22;9481:64;:::i;:::-;9463:82;;;;9259:296;9594:2;9620:53;9665:7;9656:6;9645:9;9641:22;9620:53;:::i;:::-;9610:63;;9565:118;9722:2;9748:53;9793:7;9784:6;9773:9;9769:22;9748:53;:::i;:::-;9738:63;;9693:118;9001:817;;;;;;;:::o;9824:509::-;9893:6;9942:2;9930:9;9921:7;9917:23;9913:32;9910:119;;;9948:79;;:::i;:::-;9910:119;10096:1;10085:9;10081:17;10068:31;10126:18;10118:6;10115:30;10112:117;;;10148:79;;:::i;:::-;10112:117;10253:63;10308:7;10299:6;10288:9;10284:22;10253:63;:::i;:::-;10243:73;;10039:287;9824:509;;;;:::o;10339:329::-;10398:6;10447:2;10435:9;10426:7;10422:23;10418:32;10415:119;;;10453:79;;:::i;:::-;10415:119;10573:1;10598:53;10643:7;10634:6;10623:9;10619:22;10598:53;:::i;:::-;10588:63;;10544:117;10339:329;;;;:::o;10674:118::-;10761:24;10779:5;10761:24;:::i;:::-;10756:3;10749:37;10674:118;;:::o;10798:157::-;10903:45;10923:24;10941:5;10923:24;:::i;:::-;10903:45;:::i;:::-;10898:3;10891:58;10798:157;;:::o;10961:109::-;11042:21;11057:5;11042:21;:::i;:::-;11037:3;11030:34;10961:109;;:::o;11076:118::-;11163:24;11181:5;11163:24;:::i;:::-;11158:3;11151:37;11076:118;;:::o;11200:157::-;11305:45;11325:24;11343:5;11325:24;:::i;:::-;11305:45;:::i;:::-;11300:3;11293:58;11200:157;;:::o;11363:360::-;11449:3;11477:38;11509:5;11477:38;:::i;:::-;11531:70;11594:6;11589:3;11531:70;:::i;:::-;11524:77;;11610:52;11655:6;11650:3;11643:4;11636:5;11632:16;11610:52;:::i;:::-;11687:29;11709:6;11687:29;:::i;:::-;11682:3;11678:39;11671:46;;11453:270;11363:360;;;;:::o;11729:364::-;11817:3;11845:39;11878:5;11845:39;:::i;:::-;11900:71;11964:6;11959:3;11900:71;:::i;:::-;11893:78;;11980:52;12025:6;12020:3;12013:4;12006:5;12002:16;11980:52;:::i;:::-;12057:29;12079:6;12057:29;:::i;:::-;12052:3;12048:39;12041:46;;11821:272;11729:364;;;;:::o;12099:377::-;12205:3;12233:39;12266:5;12233:39;:::i;:::-;12288:89;12370:6;12365:3;12288:89;:::i;:::-;12281:96;;12386:52;12431:6;12426:3;12419:4;12412:5;12408:16;12386:52;:::i;:::-;12463:6;12458:3;12454:16;12447:23;;12209:267;12099:377;;;;:::o;12482:366::-;12624:3;12645:67;12709:2;12704:3;12645:67;:::i;:::-;12638:74;;12721:93;12810:3;12721:93;:::i;:::-;12839:2;12834:3;12830:12;12823:19;;12482:366;;;:::o;12854:::-;12996:3;13017:67;13081:2;13076:3;13017:67;:::i;:::-;13010:74;;13093:93;13182:3;13093:93;:::i;:::-;13211:2;13206:3;13202:12;13195:19;;12854:366;;;:::o;13226:402::-;13386:3;13407:85;13489:2;13484:3;13407:85;:::i;:::-;13400:92;;13501:93;13590:3;13501:93;:::i;:::-;13619:2;13614:3;13610:12;13603:19;;13226:402;;;:::o;13634:366::-;13776:3;13797:67;13861:2;13856:3;13797:67;:::i;:::-;13790:74;;13873:93;13962:3;13873:93;:::i;:::-;13991:2;13986:3;13982:12;13975:19;;13634:366;;;:::o;14006:::-;14148:3;14169:67;14233:2;14228:3;14169:67;:::i;:::-;14162:74;;14245:93;14334:3;14245:93;:::i;:::-;14363:2;14358:3;14354:12;14347:19;;14006:366;;;:::o;14378:::-;14520:3;14541:67;14605:2;14600:3;14541:67;:::i;:::-;14534:74;;14617:93;14706:3;14617:93;:::i;:::-;14735:2;14730:3;14726:12;14719:19;;14378:366;;;:::o;14750:118::-;14837:24;14855:5;14837:24;:::i;:::-;14832:3;14825:37;14750:118;;:::o;14874:157::-;14979:45;14999:24;15017:5;14999:24;:::i;:::-;14979:45;:::i;:::-;14974:3;14967:58;14874:157;;:::o;15037:112::-;15120:22;15136:5;15120:22;:::i;:::-;15115:3;15108:35;15037:112;;:::o;15155:538::-;15323:3;15338:75;15409:3;15400:6;15338:75;:::i;:::-;15438:2;15433:3;15429:12;15422:19;;15451:75;15522:3;15513:6;15451:75;:::i;:::-;15551:2;15546:3;15542:12;15535:19;;15564:75;15635:3;15626:6;15564:75;:::i;:::-;15664:2;15659:3;15655:12;15648:19;;15684:3;15677:10;;15155:538;;;;;;:::o;15699:435::-;15879:3;15901:95;15992:3;15983:6;15901:95;:::i;:::-;15894:102;;16013:95;16104:3;16095:6;16013:95;:::i;:::-;16006:102;;16125:3;16118:10;;15699:435;;;;;:::o;16140:522::-;16353:3;16375:148;16519:3;16375:148;:::i;:::-;16368:155;;16533:75;16604:3;16595:6;16533:75;:::i;:::-;16633:2;16628:3;16624:12;16617:19;;16653:3;16646:10;;16140:522;;;;:::o;16668:222::-;16761:4;16799:2;16788:9;16784:18;16776:26;;16812:71;16880:1;16869:9;16865:17;16856:6;16812:71;:::i;:::-;16668:222;;;;:::o;16896:640::-;17091:4;17129:3;17118:9;17114:19;17106:27;;17143:71;17211:1;17200:9;17196:17;17187:6;17143:71;:::i;:::-;17224:72;17292:2;17281:9;17277:18;17268:6;17224:72;:::i;:::-;17306;17374:2;17363:9;17359:18;17350:6;17306:72;:::i;:::-;17425:9;17419:4;17415:20;17410:2;17399:9;17395:18;17388:48;17453:76;17524:4;17515:6;17453:76;:::i;:::-;17445:84;;16896:640;;;;;;;:::o;17542:210::-;17629:4;17667:2;17656:9;17652:18;17644:26;;17680:65;17742:1;17731:9;17727:17;17718:6;17680:65;:::i;:::-;17542:210;;;;:::o;17758:545::-;17931:4;17969:3;17958:9;17954:19;17946:27;;17983:71;18051:1;18040:9;18036:17;18027:6;17983:71;:::i;:::-;18064:68;18128:2;18117:9;18113:18;18104:6;18064:68;:::i;:::-;18142:72;18210:2;18199:9;18195:18;18186:6;18142:72;:::i;:::-;18224;18292:2;18281:9;18277:18;18268:6;18224:72;:::i;:::-;17758:545;;;;;;;:::o;18309:313::-;18422:4;18460:2;18449:9;18445:18;18437:26;;18509:9;18503:4;18499:20;18495:1;18484:9;18480:17;18473:47;18537:78;18610:4;18601:6;18537:78;:::i;:::-;18529:86;;18309:313;;;;:::o;18628:419::-;18794:4;18832:2;18821:9;18817:18;18809:26;;18881:9;18875:4;18871:20;18867:1;18856:9;18852:17;18845:47;18909:131;19035:4;18909:131;:::i;:::-;18901:139;;18628:419;;;:::o;19053:::-;19219:4;19257:2;19246:9;19242:18;19234:26;;19306:9;19300:4;19296:20;19292:1;19281:9;19277:17;19270:47;19334:131;19460:4;19334:131;:::i;:::-;19326:139;;19053:419;;;:::o;19478:::-;19644:4;19682:2;19671:9;19667:18;19659:26;;19731:9;19725:4;19721:20;19717:1;19706:9;19702:17;19695:47;19759:131;19885:4;19759:131;:::i;:::-;19751:139;;19478:419;;;:::o;19903:::-;20069:4;20107:2;20096:9;20092:18;20084:26;;20156:9;20150:4;20146:20;20142:1;20131:9;20127:17;20120:47;20184:131;20310:4;20184:131;:::i;:::-;20176:139;;19903:419;;;:::o;20328:::-;20494:4;20532:2;20521:9;20517:18;20509:26;;20581:9;20575:4;20571:20;20567:1;20556:9;20552:17;20545:47;20609:131;20735:4;20609:131;:::i;:::-;20601:139;;20328:419;;;:::o;20753:222::-;20846:4;20884:2;20873:9;20869:18;20861:26;;20897:71;20965:1;20954:9;20950:17;20941:6;20897:71;:::i;:::-;20753:222;;;;:::o;20981:129::-;21015:6;21042:20;;:::i;:::-;21032:30;;21071:33;21099:4;21091:6;21071:33;:::i;:::-;20981:129;;;:::o;21116:75::-;21149:6;21182:2;21176:9;21166:19;;21116:75;:::o;21197:307::-;21258:4;21348:18;21340:6;21337:30;21334:56;;;21370:18;;:::i;:::-;21334:56;21408:29;21430:6;21408:29;:::i;:::-;21400:37;;21492:4;21486;21482:15;21474:23;;21197:307;;;:::o;21510:308::-;21572:4;21662:18;21654:6;21651:30;21648:56;;;21684:18;;:::i;:::-;21648:56;21722:29;21744:6;21722:29;:::i;:::-;21714:37;;21806:4;21800;21796:15;21788:23;;21510:308;;;:::o;21824:98::-;21875:6;21909:5;21903:12;21893:22;;21824:98;;;:::o;21928:99::-;21980:6;22014:5;22008:12;21998:22;;21928:99;;;:::o;22033:168::-;22116:11;22150:6;22145:3;22138:19;22190:4;22185:3;22181:14;22166:29;;22033:168;;;;:::o;22207:169::-;22291:11;22325:6;22320:3;22313:19;22365:4;22360:3;22356:14;22341:29;;22207:169;;;;:::o;22382:148::-;22484:11;22521:3;22506:18;;22382:148;;;;:::o;22536:305::-;22576:3;22595:20;22613:1;22595:20;:::i;:::-;22590:25;;22629:20;22647:1;22629:20;:::i;:::-;22624:25;;22783:1;22715:66;22711:74;22708:1;22705:81;22702:107;;;22789:18;;:::i;:::-;22702:107;22833:1;22830;22826:9;22819:16;;22536:305;;;;:::o;22847:191::-;22887:4;22907:20;22925:1;22907:20;:::i;:::-;22902:25;;22941:20;22959:1;22941:20;:::i;:::-;22936:25;;22980:1;22977;22974:8;22971:34;;;22985:18;;:::i;:::-;22971:34;23030:1;23027;23023:9;23015:17;;22847:191;;;;:::o;23044:96::-;23081:7;23110:24;23128:5;23110:24;:::i;:::-;23099:35;;23044:96;;;:::o;23146:90::-;23180:7;23223:5;23216:13;23209:21;23198:32;;23146:90;;;:::o;23242:77::-;23279:7;23308:5;23297:16;;23242:77;;;:::o;23325:149::-;23361:7;23401:66;23394:5;23390:78;23379:89;;23325:149;;;:::o;23480:126::-;23517:7;23557:42;23550:5;23546:54;23535:65;;23480:126;;;:::o;23612:77::-;23649:7;23678:5;23667:16;;23612:77;;;:::o;23695:86::-;23730:7;23770:4;23763:5;23759:16;23748:27;;23695:86;;;:::o;23787:154::-;23871:6;23866:3;23861;23848:30;23933:1;23924:6;23919:3;23915:16;23908:27;23787:154;;;:::o;23947:307::-;24015:1;24025:113;24039:6;24036:1;24033:13;24025:113;;;24124:1;24119:3;24115:11;24109:18;24105:1;24100:3;24096:11;24089:39;24061:2;24058:1;24054:10;24049:15;;24025:113;;;24156:6;24153:1;24150:13;24147:101;;;24236:1;24227:6;24222:3;24218:16;24211:27;24147:101;23996:258;23947:307;;;:::o;24260:320::-;24304:6;24341:1;24335:4;24331:12;24321:22;;24388:1;24382:4;24378:12;24409:18;24399:81;;24465:4;24457:6;24453:17;24443:27;;24399:81;24527:2;24519:6;24516:14;24496:18;24493:38;24490:84;;;24546:18;;:::i;:::-;24490:84;24311:269;24260:320;;;:::o;24586:281::-;24669:27;24691:4;24669:27;:::i;:::-;24661:6;24657:40;24799:6;24787:10;24784:22;24763:18;24751:10;24748:34;24745:62;24742:88;;;24810:18;;:::i;:::-;24742:88;24850:10;24846:2;24839:22;24629:238;24586:281;;:::o;24873:233::-;24912:3;24935:24;24953:5;24935:24;:::i;:::-;24926:33;;24981:66;24974:5;24971:77;24968:103;;;25051:18;;:::i;:::-;24968:103;25098:1;25091:5;25087:13;25080:20;;24873:233;;;:::o;25112:100::-;25151:7;25180:26;25200:5;25180:26;:::i;:::-;25169:37;;25112:100;;;:::o;25218:79::-;25257:7;25286:5;25275:16;;25218:79;;;:::o;25303:94::-;25342:7;25371:20;25385:5;25371:20;:::i;:::-;25360:31;;25303:94;;;:::o;25403:79::-;25442:7;25471:5;25460:16;;25403:79;;;:::o;25488:180::-;25536:77;25533:1;25526:88;25633:4;25630:1;25623:15;25657:4;25654:1;25647:15;25674:180;25722:77;25719:1;25712:88;25819:4;25816:1;25809:15;25843:4;25840:1;25833:15;25860:180;25908:77;25905:1;25898:88;26005:4;26002:1;25995:15;26029:4;26026:1;26019:15;26046:180;26094:77;26091:1;26084:88;26191:4;26188:1;26181:15;26215:4;26212:1;26205:15;26232:180;26280:77;26277:1;26270:88;26377:4;26374:1;26367:15;26401:4;26398:1;26391:15;26418:117;26527:1;26524;26517:12;26541:117;26650:1;26647;26640:12;26664:117;26773:1;26770;26763:12;26787:117;26896:1;26893;26886:12;26910:117;27019:1;27016;27009:12;27033:117;27142:1;27139;27132:12;27156:102;27197:6;27248:2;27244:7;27239:2;27232:5;27228:14;27224:28;27214:38;;27156:102;;;:::o;27264:94::-;27297:8;27345:5;27341:2;27337:14;27316:35;;27264:94;;;:::o;27364:174::-;27504:26;27500:1;27492:6;27488:14;27481:50;27364:174;:::o;27544:181::-;27684:33;27680:1;27672:6;27668:14;27661:57;27544:181;:::o;27731:214::-;27871:66;27867:1;27859:6;27855:14;27848:90;27731:214;:::o;27951:225::-;28091:34;28087:1;28079:6;28075:14;28068:58;28160:8;28155:2;28147:6;28143:15;28136:33;27951:225;:::o;28182:221::-;28322:34;28318:1;28310:6;28306:14;28299:58;28391:4;28386:2;28378:6;28374:15;28367:29;28182:221;:::o;28409:182::-;28549:34;28545:1;28537:6;28533:14;28526:58;28409:182;:::o;28597:122::-;28670:24;28688:5;28670:24;:::i;:::-;28663:5;28660:35;28650:63;;28709:1;28706;28699:12;28650:63;28597:122;:::o;28725:116::-;28795:21;28810:5;28795:21;:::i;:::-;28788:5;28785:32;28775:60;;28831:1;28828;28821:12;28775:60;28725:116;:::o;28847:120::-;28919:23;28936:5;28919:23;:::i;:::-;28912:5;28909:34;28899:62;;28957:1;28954;28947:12;28899:62;28847:120;:::o;28973:122::-;29046:24;29064:5;29046:24;:::i;:::-;29039:5;29036:35;29026:63;;29085:1;29082;29075:12;29026:63;28973:122;:::o

Swarm Source

ipfs://6a0c60fe6f97d6bc25d5ec698a9e9681ade49d357c6b0d68569314207399e3ab
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.