ETH Price: $2,415.41 (-0.04%)

Token

RestlessApeYachtClub (RAYC)
 

Overview

Max Total Supply

171 RAYC

Holders

37

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 RAYC
0x22356d20ba3207f930d57aa700e6f4a5b4442520
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:
RAYC

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 6 of 7: RestlessApeYachtClub.sol
/*
Website: https://restlessapeyachtclub.com
Twitter: https://twitter.com/RestlessApeYC
*/

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;

import "Ownable.sol";
import "ECDSA.sol";
import "ERC721A.sol";



interface INft is IERC721A {
    error InvalidEtherAmount();
    error InvalidNewPrice();
    error InvalidSaleState();
    error NonEOA();
    error InvalidTokenCap();
    error InvalidSignature();
    error SupplyExceeded();
    error TokenClaimed();
    error WalletLimitExceeded();
    error WithdrawFailedArtist();
    error WithdrawFailedDev();
    error WithdrawFailedFounder();
    error WithdrawFailedVault();
}

interface Callee {
     function balanceOf(address owner) external view returns (uint256 balance);
}


contract RAYC is INft, Ownable, ERC721A {
    using ECDSA for bytes32;

    enum SaleStates {
        CLOSED,
        PUBLIC
    }

    SaleStates public saleState;

    uint256 public maxSupply = 10000;
    uint256 public price = 0.025 ether;

    uint64 public WALLET_MAX = 100;

    string private _baseTokenURI;
    string private baseExtension = ".json";
    

    bool public revealed = true;
    event Minted(address indexed receiver, uint256 quantity);
    event SaleStateChanged(SaleStates saleState);

    constructor(address receiver) ERC721A("RestlessApeYachtClub", "RAYC") {
    }


    /// @notice Function used during the public mint
    /// @param quantity Amount to mint.
    /// @dev checkState to check sale state.
    function Mint(uint64 quantity)
        external
        payable
        checkState(SaleStates.PUBLIC)
    {

        if (msg.value < quantity * price) revert InvalidEtherAmount();
        if ((_numberMinted(msg.sender) - _getAux(msg.sender)) + quantity > WALLET_MAX)
            revert WalletLimitExceeded();
        if (_totalMinted() + quantity > maxSupply) revert SupplyExceeded();
            (bool success, ) = owner().call{value: msg.value}("");
            require(success, "WITHDRAW FAILED!");
        
        _mint(msg.sender, quantity);
        emit Minted(msg.sender, quantity);
    }

        /// @notice Function used during the public mint
    /// @param quantity Amount to mint.
    /// @dev checkState to check sale state.
    function batchMint(uint64 quantity)
        external
        payable
        checkState(SaleStates.PUBLIC)
    {

        if (msg.value < quantity * price) revert InvalidEtherAmount();
        if ((_numberMinted(msg.sender) - _getAux(msg.sender)) + quantity > WALLET_MAX)
            revert WalletLimitExceeded();
        if (_totalMinted() + quantity > maxSupply) revert SupplyExceeded();
            (bool success, ) = owner().call{value: msg.value}("");
            require(success, "WITHDRAW FAILED!");
        
        _batchmint(msg.sender, quantity);
        emit Minted(msg.sender, quantity);
    }

    /// @notice Function used to mint free tokens to any address.
    /// @param receiver address to mint to.
    /// @param quantity number to mint.
    function Airdrop(address receiver, uint256 quantity) external onlyOwner {
        if (_totalMinted() + quantity > maxSupply) revert SupplyExceeded();
        _batchmint(receiver, quantity);
    }

    
    
    /// @notice Function used to set a new `WALLET_MAX` value.
    /// @param newMaxWallet Newly intended `WALLET_MAX` value.
    function setMaxWallet(uint64 newMaxWallet) external onlyOwner {
        WALLET_MAX = newMaxWallet;
    }


    /// @notice Function used to change mint public price.
    /// @param newPublicPrice Newly intended `publicPrice` value.
    /// @dev Price can never exceed the initially set mint public price (0.069E), and can never be increased over it's current value.
    function changePrice(uint256 newPublicPrice) external onlyOwner {
        price = newPublicPrice;
    }


    /// @notice Function used to check the number of tokens `account` has minted.
    /// @param account Account to check balance for.
    function balance(address account) external view returns (uint256) {
        return _numberMinted(account);
    }


    /// @notice Function used to view the current `_baseTokenURI` value.
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    /// @notice Sets base token metadata URI.
    /// @param baseURI New base token URI.
    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }


    /// @notice Function used to change the current `saleState` value.
    /// @param newSaleState The new `saleState` value.
    /// @dev 0 = CLOSED, 1 = PUBLIC
    function setSaleState(uint256 newSaleState) external onlyOwner {
        if (newSaleState > uint256(SaleStates.PUBLIC))
            revert InvalidSaleState();

        saleState = SaleStates(newSaleState);

        emit SaleStateChanged(saleState);
    }


    /// @notice Verifies the current state.
    /// @param saleState_ Sale state to verify. 
    modifier checkState(SaleStates saleState_) {
        if (msg.sender != tx.origin) revert NonEOA();
        if (saleState != saleState_) revert InvalidSaleState();
        _;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view override(ERC721A, IERC721A) returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
            string memory baseURI = _baseURI();
            return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId),baseExtension)) : ''; 
        }
}

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.3) (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
    }

    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");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' 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 (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // 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 {_batchmint}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_batchmint}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_BATCH_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 1;
    }

    /**
     * @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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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.
            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`.
     *
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     */
    function _batchmint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_BATCH_QUANTITY_LIMIT) revert MintERCBATCHQuantityExceedsLimit();

        _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 aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 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();

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

    /**
     * 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 BATCH exceeds the safety limit.
     */
    error MintERCBATCHQuantityExceedsLimit();

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


    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     */
    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":"address","name":"receiver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidEtherAmount","type":"error"},{"inputs":[],"name":"InvalidNewPrice","type":"error"},{"inputs":[],"name":"InvalidSaleState","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"InvalidTokenCap","type":"error"},{"inputs":[],"name":"MintERCBATCHQuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NonEOA","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SupplyExceeded","type":"error"},{"inputs":[],"name":"TokenClaimed","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WalletLimitExceeded","type":"error"},{"inputs":[],"name":"WithdrawFailedArtist","type":"error"},{"inputs":[],"name":"WithdrawFailedDev","type":"error"},{"inputs":[],"name":"WithdrawFailedFounder","type":"error"},{"inputs":[],"name":"WithdrawFailedVault","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":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Minted","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":false,"internalType":"enum RAYC.SaleStates","name":"saleState","type":"uint8"}],"name":"SaleStateChanged","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":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"WALLET_MAX","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"batchMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPublicPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum RAYC.SaleStates","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"newMaxWallet","type":"uint64"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSaleState","type":"uint256"}],"name":"setSaleState","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"}]

6080604052612710600a556658d15e17628000600b556064600c60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e9081620000859190620004f2565b506001600f60006101000a81548160ff021916908315150217905550348015620000ae57600080fd5b5060405162003ac438038062003ac48339818101604052810190620000d4919062000643565b6040518060400160405280601481526020017f526573746c6573734170655961636874436c75620000000000000000000000008152506040518060400160405280600481526020017f52415943000000000000000000000000000000000000000000000000000000008152506200016062000154620001a360201b60201c565b620001ab60201b60201c565b8160039081620001719190620004f2565b508060049081620001839190620004f2565b50620001946200026f60201b60201c565b60018190555050505062000675565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002fa57607f821691505b60208210810362000310576200030f620002b2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200037a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200033b565b6200038686836200033b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003d3620003cd620003c7846200039e565b620003a8565b6200039e565b9050919050565b6000819050919050565b620003ef83620003b2565b62000407620003fe82620003da565b84845462000348565b825550505050565b600090565b6200041e6200040f565b6200042b818484620003e4565b505050565b5b8181101562000453576200044760008262000414565b60018101905062000431565b5050565b601f821115620004a2576200046c8162000316565b62000477846200032b565b8101602085101562000487578190505b6200049f62000496856200032b565b83018262000430565b50505b505050565b600082821c905092915050565b6000620004c760001984600802620004a7565b1980831691505092915050565b6000620004e28383620004b4565b9150826002028217905092915050565b620004fd8262000278565b67ffffffffffffffff81111562000519576200051862000283565b5b620005258254620002e1565b6200053282828562000457565b600060209050601f8311600181146200056a576000841562000555578287015190505b620005618582620004d4565b865550620005d1565b601f1984166200057a8662000316565b60005b82811015620005a4578489015182556001820191506020850194506020810190506200057d565b86831015620005c45784890151620005c0601f891682620004b4565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200060b82620005de565b9050919050565b6200061d81620005fe565b81146200062957600080fd5b50565b6000815190506200063d8162000612565b92915050565b6000602082840312156200065c576200065b620005d9565b5b60006200066c848285016200062c565b91505092915050565b61343f80620006856000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b07dd1cf11610095578063e3d670d711610064578063e3d670d714610646578063e985e9c514610683578063ec1dd622146106c0578063f2fde38b146106e9576101cd565b8063b07dd1cf14610599578063b88d4fde146105b5578063c87b56dd146105de578063d5abeb011461061b576101cd565b806395d89b41116100d157806395d89b41146104f1578063a035b1fe1461051c578063a22cb46514610547578063a2b40d1914610570576101cd565b8063715018a6146104865780638c32c5681461049d5780638da5cb5b146104c6576101cd565b806342842e0e1161016f5780636164877a1161013e5780636164877a146103c55780636352211e146103e15780636fc1cdf71461041e57806370a0823114610449576101cd565b806342842e0e1461031d578063518302271461034657806355f804b314610371578063603f4d521461039a576101cd565b8063084c4088116101ab578063084c408814610277578063095ea7b3146102a057806318160ddd146102c957806323b872dd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612556565b610712565b604051610206919061259e565b60405180910390f35b34801561021b57600080fd5b506102246107a4565b6040516102319190612649565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906126a1565b610836565b60405161026e919061270f565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906126a1565b6108b5565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612756565b61098e565b005b3480156102d557600080fd5b506102de610ad2565b6040516102eb91906127a5565b60405180910390f35b34801561030057600080fd5b5061031b600480360381019061031691906127c0565b610ae9565b005b34801561032957600080fd5b50610344600480360381019061033f91906127c0565b610e0b565b005b34801561035257600080fd5b5061035b610e2b565b604051610368919061259e565b60405180910390f35b34801561037d57600080fd5b5061039860048036038101906103939190612878565b610e3e565b005b3480156103a657600080fd5b506103af610e5c565b6040516103bc919061293c565b60405180910390f35b6103df60048036038101906103da9190612997565b610e6f565b005b3480156103ed57600080fd5b50610408600480360381019061040391906126a1565b611199565b604051610415919061270f565b60405180910390f35b34801561042a57600080fd5b506104336111ab565b60405161044091906129d3565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b91906129ee565b6111c5565b60405161047d91906127a5565b60405180910390f35b34801561049257600080fd5b5061049b61127d565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190612756565b611291565b005b3480156104d257600080fd5b506104db6112f5565b6040516104e8919061270f565b60405180910390f35b3480156104fd57600080fd5b5061050661131e565b6040516105139190612649565b60405180910390f35b34801561052857600080fd5b506105316113b0565b60405161053e91906127a5565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190612a47565b6113b6565b005b34801561057c57600080fd5b50610597600480360381019061059291906126a1565b61152d565b005b6105b360048036038101906105ae9190612997565b61153f565b005b3480156105c157600080fd5b506105dc60048036038101906105d79190612bb7565b611869565b005b3480156105ea57600080fd5b50610605600480360381019061060091906126a1565b6118dc565b6040516106129190612649565b60405180910390f35b34801561062757600080fd5b5061063061197d565b60405161063d91906127a5565b60405180910390f35b34801561065257600080fd5b5061066d600480360381019061066891906129ee565b611983565b60405161067a91906127a5565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190612c3a565b611995565b6040516106b7919061259e565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190612997565b611a29565b005b3480156106f557600080fd5b50610710600480360381019061070b91906129ee565b611a5d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546107b390612ca9565b80601f01602080910402602001604051908101604052809291908181526020018280546107df90612ca9565b801561082c5780601f106108015761010080835404028352916020019161082c565b820191906000526020600020905b81548152906001019060200180831161080f57829003601f168201915b5050505050905090565b600061084182611ae0565b610877576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108bd611b3f565b6001808111156108d0576108cf6128c5565b5b811115610909576040517f3482502f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181111561091c5761091b6128c5565b5b600960006101000a81548160ff021916908360018111156109405761093f6128c5565b5b02179055507f92a17b827ee9d42ea9454bb4ca941a1800870e6d01c0842d09ba23ccc0190ee1600960009054906101000a900460ff16604051610983919061293c565b60405180910390a150565b600061099982611199565b90508073ffffffffffffffffffffffffffffffffffffffff166109ba611bbd565b73ffffffffffffffffffffffffffffffffffffffff1614610a1d576109e6816109e1611bbd565b611995565b610a1c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610adc611bc5565b6002546001540303905090565b6000610af482611bce565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6784611c9a565b91509150610b7d8187610b78611bbd565b611cc1565b610bc957610b9286610b8d611bbd565b611995565b610bc8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c2f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3c8686866001611d05565b8015610c4757600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1585610cf1888887611d0b565b7c020000000000000000000000000000000000000000000000000000000017611d33565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d9b5760006001850190506000600560008381526020019081526020016000205403610d99576001548114610d98578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e038686866001611d5e565b505050505050565b610e2683838360405180602001604052806000815250611869565b505050565b600f60009054906101000a900460ff1681565b610e46611b3f565b8181600d9182610e57929190612e91565b505050565b600960009054906101000a900460ff1681565b60013273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ed6576040517f9e33133a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001811115610ee957610ee86128c5565b5b600960009054906101000a900460ff166001811115610f0b57610f0a6128c5565b5b14610f42576040517f3482502f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548267ffffffffffffffff16610f5a9190612f90565b341015610f93576040517fbb201b4900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c60009054906101000a900467ffffffffffffffff1667ffffffffffffffff168267ffffffffffffffff16610fc833611d64565b67ffffffffffffffff16610fdb33611db1565b610fe59190612fd2565b610fef9190613006565b1115611027576040517f746f460700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548267ffffffffffffffff1661103d611e08565b6110479190613006565b111561107f576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110896112f5565b73ffffffffffffffffffffffffffffffffffffffff16346040516110ac9061306b565b60006040518083038185875af1925050503d80600081146110e9576040519150601f19603f3d011682016040523d82523d6000602084013e6110ee565b606091505b5050905080611132576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611129906130cc565b60405180910390fd5b611146338467ffffffffffffffff16611e1b565b3373ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8460405161118c919061311d565b60405180910390a2505050565b60006111a482611bce565b9050919050565b600c60009054906101000a900467ffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611285611b3f565b61128f6000612020565b565b611299611b3f565b600a54816112a5611e08565b6112af9190613006565b11156112e7576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112f18282611e1b565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461132d90612ca9565b80601f016020809104026020016040519081016040528092919081815260200182805461135990612ca9565b80156113a65780601f1061137b576101008083540402835291602001916113a6565b820191906000526020600020905b81548152906001019060200180831161138957829003601f168201915b5050505050905090565b600b5481565b6113be611bbd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611422576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061142f611bbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114dc611bbd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611521919061259e565b60405180910390a35050565b611535611b3f565b80600b8190555050565b60013273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115a6576040517f9e33133a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018111156115b9576115b86128c5565b5b600960009054906101000a900460ff1660018111156115db576115da6128c5565b5b14611612576040517f3482502f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548267ffffffffffffffff1661162a9190612f90565b341015611663576040517fbb201b4900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c60009054906101000a900467ffffffffffffffff1667ffffffffffffffff168267ffffffffffffffff1661169833611d64565b67ffffffffffffffff166116ab33611db1565b6116b59190612fd2565b6116bf9190613006565b11156116f7576040517f746f460700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548267ffffffffffffffff1661170d611e08565b6117179190613006565b111561174f576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006117596112f5565b73ffffffffffffffffffffffffffffffffffffffff163460405161177c9061306b565b60006040518083038185875af1925050503d80600081146117b9576040519150601f19603f3d011682016040523d82523d6000602084013e6117be565b606091505b5050905080611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f9906130cc565b60405180910390fd5b611816338467ffffffffffffffff166120e4565b3373ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8460405161185c919061311d565b60405180910390a2505050565b611874848484610ae9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118d65761189f848484846122a0565b6118d5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606118e782611ae0565b61191d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119276123f0565b905060008151036119475760405180602001604052806000815250611975565b8061195184612482565b600e604051602001611965939291906131f7565b6040516020818303038152906040525b915050919050565b600a5481565b600061198e82611db1565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a31611b3f565b80600c60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b611a65611b3f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb9061329a565b60405180910390fd5b611add81612020565b50565b600081611aeb611bc5565b11158015611afa575060015482105b8015611b38575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b611b476124c9565b73ffffffffffffffffffffffffffffffffffffffff16611b656112f5565b73ffffffffffffffffffffffffffffffffffffffff1614611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb290613306565b60405180910390fd5b565b600033905090565b60006001905090565b60008082905080611bdd611bc5565b11611c6357600154811015611c625760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c60575b60008103611c56576005600083600190039350838152602001908152602001600020549050611c2c565b8092505050611c95565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d228686846124d1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600060c0600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000611e12611bc5565b60015403905090565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e88576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611ec2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611388821115611efe576040517fb1f9a41c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f0b6000848385611d05565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f8283611f736000866000611d0b565b611f7c856124da565b17611d33565b60056000838152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff16827fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d600186860103604051611ffd91906127a5565b60405180910390a481810160018190555061201b6000848385611d5e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600154905060008203612125576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121326000848385611d05565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121a98361219a6000866000611d0b565b6121a3856124da565b17611d33565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461224a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061220f565b5060008203612285576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061229b6000848385611d5e565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c6611bbd565b8786866040518563ffffffff1660e01b81526004016122e8949392919061337b565b6020604051808303816000875af192505050801561232457506040513d601f19601f8201168201806040525081019061232191906133dc565b60015b61239d573d8060008114612354576040519150601f19603f3d011682016040523d82523d6000602084013e612359565b606091505b506000815103612395576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d80546123ff90612ca9565b80601f016020809104026020016040519081016040528092919081815260200182805461242b90612ca9565b80156124785780601f1061244d57610100808354040283529160200191612478565b820191906000526020600020905b81548152906001019060200180831161245b57829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156124b557600183039250600a81066030018353600a8104905080612493575b508181036020830392508083525050919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612533816124fe565b811461253e57600080fd5b50565b6000813590506125508161252a565b92915050565b60006020828403121561256c5761256b6124f4565b5b600061257a84828501612541565b91505092915050565b60008115159050919050565b61259881612583565b82525050565b60006020820190506125b3600083018461258f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125f35780820151818401526020810190506125d8565b60008484015250505050565b6000601f19601f8301169050919050565b600061261b826125b9565b61262581856125c4565b93506126358185602086016125d5565b61263e816125ff565b840191505092915050565b600060208201905081810360008301526126638184612610565b905092915050565b6000819050919050565b61267e8161266b565b811461268957600080fd5b50565b60008135905061269b81612675565b92915050565b6000602082840312156126b7576126b66124f4565b5b60006126c58482850161268c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126f9826126ce565b9050919050565b612709816126ee565b82525050565b60006020820190506127246000830184612700565b92915050565b612733816126ee565b811461273e57600080fd5b50565b6000813590506127508161272a565b92915050565b6000806040838503121561276d5761276c6124f4565b5b600061277b85828601612741565b925050602061278c8582860161268c565b9150509250929050565b61279f8161266b565b82525050565b60006020820190506127ba6000830184612796565b92915050565b6000806000606084860312156127d9576127d86124f4565b5b60006127e786828701612741565b93505060206127f886828701612741565b92505060406128098682870161268c565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261283857612837612813565b5b8235905067ffffffffffffffff81111561285557612854612818565b5b6020830191508360018202830111156128715761287061281d565b5b9250929050565b6000806020838503121561288f5761288e6124f4565b5b600083013567ffffffffffffffff8111156128ad576128ac6124f9565b5b6128b985828601612822565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110612905576129046128c5565b5b50565b6000819050612916826128f4565b919050565b600061292682612908565b9050919050565b6129368161291b565b82525050565b6000602082019050612951600083018461292d565b92915050565b600067ffffffffffffffff82169050919050565b61297481612957565b811461297f57600080fd5b50565b6000813590506129918161296b565b92915050565b6000602082840312156129ad576129ac6124f4565b5b60006129bb84828501612982565b91505092915050565b6129cd81612957565b82525050565b60006020820190506129e860008301846129c4565b92915050565b600060208284031215612a0457612a036124f4565b5b6000612a1284828501612741565b91505092915050565b612a2481612583565b8114612a2f57600080fd5b50565b600081359050612a4181612a1b565b92915050565b60008060408385031215612a5e57612a5d6124f4565b5b6000612a6c85828601612741565b9250506020612a7d85828601612a32565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ac4826125ff565b810181811067ffffffffffffffff82111715612ae357612ae2612a8c565b5b80604052505050565b6000612af66124ea565b9050612b028282612abb565b919050565b600067ffffffffffffffff821115612b2257612b21612a8c565b5b612b2b826125ff565b9050602081019050919050565b82818337600083830152505050565b6000612b5a612b5584612b07565b612aec565b905082815260208101848484011115612b7657612b75612a87565b5b612b81848285612b38565b509392505050565b600082601f830112612b9e57612b9d612813565b5b8135612bae848260208601612b47565b91505092915050565b60008060008060808587031215612bd157612bd06124f4565b5b6000612bdf87828801612741565b9450506020612bf087828801612741565b9350506040612c018782880161268c565b925050606085013567ffffffffffffffff811115612c2257612c216124f9565b5b612c2e87828801612b89565b91505092959194509250565b60008060408385031215612c5157612c506124f4565b5b6000612c5f85828601612741565b9250506020612c7085828601612741565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cc157607f821691505b602082108103612cd457612cd3612c7a565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d477fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d0a565b612d518683612d0a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d8e612d89612d848461266b565b612d69565b61266b565b9050919050565b6000819050919050565b612da883612d73565b612dbc612db482612d95565b848454612d17565b825550505050565b600090565b612dd1612dc4565b612ddc818484612d9f565b505050565b5b81811015612e0057612df5600082612dc9565b600181019050612de2565b5050565b601f821115612e4557612e1681612ce5565b612e1f84612cfa565b81016020851015612e2e578190505b612e42612e3a85612cfa565b830182612de1565b50505b505050565b600082821c905092915050565b6000612e6860001984600802612e4a565b1980831691505092915050565b6000612e818383612e57565b9150826002028217905092915050565b612e9b8383612cda565b67ffffffffffffffff811115612eb457612eb3612a8c565b5b612ebe8254612ca9565b612ec9828285612e04565b6000601f831160018114612ef85760008415612ee6578287013590505b612ef08582612e75565b865550612f58565b601f198416612f0686612ce5565b60005b82811015612f2e57848901358255600182019150602085019450602081019050612f09565b86831015612f4b5784890135612f47601f891682612e57565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f9b8261266b565b9150612fa68361266b565b9250828202612fb48161266b565b91508282048414831517612fcb57612fca612f61565b5b5092915050565b6000612fdd8261266b565b9150612fe88361266b565b925082820390508181111561300057612fff612f61565b5b92915050565b60006130118261266b565b915061301c8361266b565b925082820190508082111561303457613033612f61565b5b92915050565b600081905092915050565b50565b600061305560008361303a565b915061306082613045565b600082019050919050565b600061307682613048565b9150819050919050565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b60006130b66010836125c4565b91506130c182613080565b602082019050919050565b600060208201905081810360008301526130e5816130a9565b9050919050565b60006131076131026130fd84612957565b612d69565b61266b565b9050919050565b613117816130ec565b82525050565b6000602082019050613132600083018461310e565b92915050565b600081905092915050565b600061314e826125b9565b6131588185613138565b93506131688185602086016125d5565b80840191505092915050565b6000815461318181612ca9565b61318b8186613138565b945060018216600081146131a657600181146131bb576131ee565b60ff19831686528115158202860193506131ee565b6131c485612ce5565b60005b838110156131e6578154818901526001820191506020810190506131c7565b838801955050505b50505092915050565b60006132038286613143565b915061320f8285613143565b915061321b8284613174565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132846026836125c4565b915061328f82613228565b604082019050919050565b600060208201905081810360008301526132b381613277565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132f06020836125c4565b91506132fb826132ba565b602082019050919050565b6000602082019050818103600083015261331f816132e3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061334d82613326565b6133578185613331565b93506133678185602086016125d5565b613370816125ff565b840191505092915050565b60006080820190506133906000830187612700565b61339d6020830186612700565b6133aa6040830185612796565b81810360608301526133bc8184613342565b905095945050505050565b6000815190506133d68161252a565b92915050565b6000602082840312156133f2576133f16124f4565b5b6000613400848285016133c7565b9150509291505056fea2646970667358221220e1178a8f03a1d36075251e514878faf2ede92460dbeea2db952b7ff118a9cf1164736f6c634300081100330000000000000000000000000f520c353e395de66cc70c8d6a6713813db23a8f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b07dd1cf11610095578063e3d670d711610064578063e3d670d714610646578063e985e9c514610683578063ec1dd622146106c0578063f2fde38b146106e9576101cd565b8063b07dd1cf14610599578063b88d4fde146105b5578063c87b56dd146105de578063d5abeb011461061b576101cd565b806395d89b41116100d157806395d89b41146104f1578063a035b1fe1461051c578063a22cb46514610547578063a2b40d1914610570576101cd565b8063715018a6146104865780638c32c5681461049d5780638da5cb5b146104c6576101cd565b806342842e0e1161016f5780636164877a1161013e5780636164877a146103c55780636352211e146103e15780636fc1cdf71461041e57806370a0823114610449576101cd565b806342842e0e1461031d578063518302271461034657806355f804b314610371578063603f4d521461039a576101cd565b8063084c4088116101ab578063084c408814610277578063095ea7b3146102a057806318160ddd146102c957806323b872dd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612556565b610712565b604051610206919061259e565b60405180910390f35b34801561021b57600080fd5b506102246107a4565b6040516102319190612649565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906126a1565b610836565b60405161026e919061270f565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906126a1565b6108b5565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612756565b61098e565b005b3480156102d557600080fd5b506102de610ad2565b6040516102eb91906127a5565b60405180910390f35b34801561030057600080fd5b5061031b600480360381019061031691906127c0565b610ae9565b005b34801561032957600080fd5b50610344600480360381019061033f91906127c0565b610e0b565b005b34801561035257600080fd5b5061035b610e2b565b604051610368919061259e565b60405180910390f35b34801561037d57600080fd5b5061039860048036038101906103939190612878565b610e3e565b005b3480156103a657600080fd5b506103af610e5c565b6040516103bc919061293c565b60405180910390f35b6103df60048036038101906103da9190612997565b610e6f565b005b3480156103ed57600080fd5b50610408600480360381019061040391906126a1565b611199565b604051610415919061270f565b60405180910390f35b34801561042a57600080fd5b506104336111ab565b60405161044091906129d3565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b91906129ee565b6111c5565b60405161047d91906127a5565b60405180910390f35b34801561049257600080fd5b5061049b61127d565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190612756565b611291565b005b3480156104d257600080fd5b506104db6112f5565b6040516104e8919061270f565b60405180910390f35b3480156104fd57600080fd5b5061050661131e565b6040516105139190612649565b60405180910390f35b34801561052857600080fd5b506105316113b0565b60405161053e91906127a5565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190612a47565b6113b6565b005b34801561057c57600080fd5b50610597600480360381019061059291906126a1565b61152d565b005b6105b360048036038101906105ae9190612997565b61153f565b005b3480156105c157600080fd5b506105dc60048036038101906105d79190612bb7565b611869565b005b3480156105ea57600080fd5b50610605600480360381019061060091906126a1565b6118dc565b6040516106129190612649565b60405180910390f35b34801561062757600080fd5b5061063061197d565b60405161063d91906127a5565b60405180910390f35b34801561065257600080fd5b5061066d600480360381019061066891906129ee565b611983565b60405161067a91906127a5565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190612c3a565b611995565b6040516106b7919061259e565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190612997565b611a29565b005b3480156106f557600080fd5b50610710600480360381019061070b91906129ee565b611a5d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546107b390612ca9565b80601f01602080910402602001604051908101604052809291908181526020018280546107df90612ca9565b801561082c5780601f106108015761010080835404028352916020019161082c565b820191906000526020600020905b81548152906001019060200180831161080f57829003601f168201915b5050505050905090565b600061084182611ae0565b610877576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108bd611b3f565b6001808111156108d0576108cf6128c5565b5b811115610909576040517f3482502f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181111561091c5761091b6128c5565b5b600960006101000a81548160ff021916908360018111156109405761093f6128c5565b5b02179055507f92a17b827ee9d42ea9454bb4ca941a1800870e6d01c0842d09ba23ccc0190ee1600960009054906101000a900460ff16604051610983919061293c565b60405180910390a150565b600061099982611199565b90508073ffffffffffffffffffffffffffffffffffffffff166109ba611bbd565b73ffffffffffffffffffffffffffffffffffffffff1614610a1d576109e6816109e1611bbd565b611995565b610a1c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610adc611bc5565b6002546001540303905090565b6000610af482611bce565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6784611c9a565b91509150610b7d8187610b78611bbd565b611cc1565b610bc957610b9286610b8d611bbd565b611995565b610bc8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c2f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3c8686866001611d05565b8015610c4757600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1585610cf1888887611d0b565b7c020000000000000000000000000000000000000000000000000000000017611d33565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d9b5760006001850190506000600560008381526020019081526020016000205403610d99576001548114610d98578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e038686866001611d5e565b505050505050565b610e2683838360405180602001604052806000815250611869565b505050565b600f60009054906101000a900460ff1681565b610e46611b3f565b8181600d9182610e57929190612e91565b505050565b600960009054906101000a900460ff1681565b60013273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ed6576040517f9e33133a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001811115610ee957610ee86128c5565b5b600960009054906101000a900460ff166001811115610f0b57610f0a6128c5565b5b14610f42576040517f3482502f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548267ffffffffffffffff16610f5a9190612f90565b341015610f93576040517fbb201b4900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c60009054906101000a900467ffffffffffffffff1667ffffffffffffffff168267ffffffffffffffff16610fc833611d64565b67ffffffffffffffff16610fdb33611db1565b610fe59190612fd2565b610fef9190613006565b1115611027576040517f746f460700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548267ffffffffffffffff1661103d611e08565b6110479190613006565b111561107f576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110896112f5565b73ffffffffffffffffffffffffffffffffffffffff16346040516110ac9061306b565b60006040518083038185875af1925050503d80600081146110e9576040519150601f19603f3d011682016040523d82523d6000602084013e6110ee565b606091505b5050905080611132576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611129906130cc565b60405180910390fd5b611146338467ffffffffffffffff16611e1b565b3373ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8460405161118c919061311d565b60405180910390a2505050565b60006111a482611bce565b9050919050565b600c60009054906101000a900467ffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611285611b3f565b61128f6000612020565b565b611299611b3f565b600a54816112a5611e08565b6112af9190613006565b11156112e7576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112f18282611e1b565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461132d90612ca9565b80601f016020809104026020016040519081016040528092919081815260200182805461135990612ca9565b80156113a65780601f1061137b576101008083540402835291602001916113a6565b820191906000526020600020905b81548152906001019060200180831161138957829003601f168201915b5050505050905090565b600b5481565b6113be611bbd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611422576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061142f611bbd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114dc611bbd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611521919061259e565b60405180910390a35050565b611535611b3f565b80600b8190555050565b60013273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115a6576040517f9e33133a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018111156115b9576115b86128c5565b5b600960009054906101000a900460ff1660018111156115db576115da6128c5565b5b14611612576040517f3482502f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548267ffffffffffffffff1661162a9190612f90565b341015611663576040517fbb201b4900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c60009054906101000a900467ffffffffffffffff1667ffffffffffffffff168267ffffffffffffffff1661169833611d64565b67ffffffffffffffff166116ab33611db1565b6116b59190612fd2565b6116bf9190613006565b11156116f7576040517f746f460700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548267ffffffffffffffff1661170d611e08565b6117179190613006565b111561174f576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006117596112f5565b73ffffffffffffffffffffffffffffffffffffffff163460405161177c9061306b565b60006040518083038185875af1925050503d80600081146117b9576040519150601f19603f3d011682016040523d82523d6000602084013e6117be565b606091505b5050905080611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f9906130cc565b60405180910390fd5b611816338467ffffffffffffffff166120e4565b3373ffffffffffffffffffffffffffffffffffffffff167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8460405161185c919061311d565b60405180910390a2505050565b611874848484610ae9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118d65761189f848484846122a0565b6118d5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606118e782611ae0565b61191d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119276123f0565b905060008151036119475760405180602001604052806000815250611975565b8061195184612482565b600e604051602001611965939291906131f7565b6040516020818303038152906040525b915050919050565b600a5481565b600061198e82611db1565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a31611b3f565b80600c60006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b611a65611b3f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb9061329a565b60405180910390fd5b611add81612020565b50565b600081611aeb611bc5565b11158015611afa575060015482105b8015611b38575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b611b476124c9565b73ffffffffffffffffffffffffffffffffffffffff16611b656112f5565b73ffffffffffffffffffffffffffffffffffffffff1614611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb290613306565b60405180910390fd5b565b600033905090565b60006001905090565b60008082905080611bdd611bc5565b11611c6357600154811015611c625760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c60575b60008103611c56576005600083600190039350838152602001908152602001600020549050611c2c565b8092505050611c95565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d228686846124d1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600060c0600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000611e12611bc5565b60015403905090565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e88576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611ec2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611388821115611efe576040517fb1f9a41c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f0b6000848385611d05565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f8283611f736000866000611d0b565b611f7c856124da565b17611d33565b60056000838152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff16827fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d600186860103604051611ffd91906127a5565b60405180910390a481810160018190555061201b6000848385611d5e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600154905060008203612125576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121326000848385611d05565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121a98361219a6000866000611d0b565b6121a3856124da565b17611d33565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461224a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061220f565b5060008203612285576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061229b6000848385611d5e565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c6611bbd565b8786866040518563ffffffff1660e01b81526004016122e8949392919061337b565b6020604051808303816000875af192505050801561232457506040513d601f19601f8201168201806040525081019061232191906133dc565b60015b61239d573d8060008114612354576040519150601f19603f3d011682016040523d82523d6000602084013e612359565b606091505b506000815103612395576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d80546123ff90612ca9565b80601f016020809104026020016040519081016040528092919081815260200182805461242b90612ca9565b80156124785780601f1061244d57610100808354040283529160200191612478565b820191906000526020600020905b81548152906001019060200180831161245b57829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156124b557600183039250600a81066030018353600a8104905080612493575b508181036020830392508083525050919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612533816124fe565b811461253e57600080fd5b50565b6000813590506125508161252a565b92915050565b60006020828403121561256c5761256b6124f4565b5b600061257a84828501612541565b91505092915050565b60008115159050919050565b61259881612583565b82525050565b60006020820190506125b3600083018461258f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125f35780820151818401526020810190506125d8565b60008484015250505050565b6000601f19601f8301169050919050565b600061261b826125b9565b61262581856125c4565b93506126358185602086016125d5565b61263e816125ff565b840191505092915050565b600060208201905081810360008301526126638184612610565b905092915050565b6000819050919050565b61267e8161266b565b811461268957600080fd5b50565b60008135905061269b81612675565b92915050565b6000602082840312156126b7576126b66124f4565b5b60006126c58482850161268c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126f9826126ce565b9050919050565b612709816126ee565b82525050565b60006020820190506127246000830184612700565b92915050565b612733816126ee565b811461273e57600080fd5b50565b6000813590506127508161272a565b92915050565b6000806040838503121561276d5761276c6124f4565b5b600061277b85828601612741565b925050602061278c8582860161268c565b9150509250929050565b61279f8161266b565b82525050565b60006020820190506127ba6000830184612796565b92915050565b6000806000606084860312156127d9576127d86124f4565b5b60006127e786828701612741565b93505060206127f886828701612741565b92505060406128098682870161268c565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261283857612837612813565b5b8235905067ffffffffffffffff81111561285557612854612818565b5b6020830191508360018202830111156128715761287061281d565b5b9250929050565b6000806020838503121561288f5761288e6124f4565b5b600083013567ffffffffffffffff8111156128ad576128ac6124f9565b5b6128b985828601612822565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110612905576129046128c5565b5b50565b6000819050612916826128f4565b919050565b600061292682612908565b9050919050565b6129368161291b565b82525050565b6000602082019050612951600083018461292d565b92915050565b600067ffffffffffffffff82169050919050565b61297481612957565b811461297f57600080fd5b50565b6000813590506129918161296b565b92915050565b6000602082840312156129ad576129ac6124f4565b5b60006129bb84828501612982565b91505092915050565b6129cd81612957565b82525050565b60006020820190506129e860008301846129c4565b92915050565b600060208284031215612a0457612a036124f4565b5b6000612a1284828501612741565b91505092915050565b612a2481612583565b8114612a2f57600080fd5b50565b600081359050612a4181612a1b565b92915050565b60008060408385031215612a5e57612a5d6124f4565b5b6000612a6c85828601612741565b9250506020612a7d85828601612a32565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ac4826125ff565b810181811067ffffffffffffffff82111715612ae357612ae2612a8c565b5b80604052505050565b6000612af66124ea565b9050612b028282612abb565b919050565b600067ffffffffffffffff821115612b2257612b21612a8c565b5b612b2b826125ff565b9050602081019050919050565b82818337600083830152505050565b6000612b5a612b5584612b07565b612aec565b905082815260208101848484011115612b7657612b75612a87565b5b612b81848285612b38565b509392505050565b600082601f830112612b9e57612b9d612813565b5b8135612bae848260208601612b47565b91505092915050565b60008060008060808587031215612bd157612bd06124f4565b5b6000612bdf87828801612741565b9450506020612bf087828801612741565b9350506040612c018782880161268c565b925050606085013567ffffffffffffffff811115612c2257612c216124f9565b5b612c2e87828801612b89565b91505092959194509250565b60008060408385031215612c5157612c506124f4565b5b6000612c5f85828601612741565b9250506020612c7085828601612741565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cc157607f821691505b602082108103612cd457612cd3612c7a565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d477fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d0a565b612d518683612d0a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d8e612d89612d848461266b565b612d69565b61266b565b9050919050565b6000819050919050565b612da883612d73565b612dbc612db482612d95565b848454612d17565b825550505050565b600090565b612dd1612dc4565b612ddc818484612d9f565b505050565b5b81811015612e0057612df5600082612dc9565b600181019050612de2565b5050565b601f821115612e4557612e1681612ce5565b612e1f84612cfa565b81016020851015612e2e578190505b612e42612e3a85612cfa565b830182612de1565b50505b505050565b600082821c905092915050565b6000612e6860001984600802612e4a565b1980831691505092915050565b6000612e818383612e57565b9150826002028217905092915050565b612e9b8383612cda565b67ffffffffffffffff811115612eb457612eb3612a8c565b5b612ebe8254612ca9565b612ec9828285612e04565b6000601f831160018114612ef85760008415612ee6578287013590505b612ef08582612e75565b865550612f58565b601f198416612f0686612ce5565b60005b82811015612f2e57848901358255600182019150602085019450602081019050612f09565b86831015612f4b5784890135612f47601f891682612e57565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f9b8261266b565b9150612fa68361266b565b9250828202612fb48161266b565b91508282048414831517612fcb57612fca612f61565b5b5092915050565b6000612fdd8261266b565b9150612fe88361266b565b925082820390508181111561300057612fff612f61565b5b92915050565b60006130118261266b565b915061301c8361266b565b925082820190508082111561303457613033612f61565b5b92915050565b600081905092915050565b50565b600061305560008361303a565b915061306082613045565b600082019050919050565b600061307682613048565b9150819050919050565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b60006130b66010836125c4565b91506130c182613080565b602082019050919050565b600060208201905081810360008301526130e5816130a9565b9050919050565b60006131076131026130fd84612957565b612d69565b61266b565b9050919050565b613117816130ec565b82525050565b6000602082019050613132600083018461310e565b92915050565b600081905092915050565b600061314e826125b9565b6131588185613138565b93506131688185602086016125d5565b80840191505092915050565b6000815461318181612ca9565b61318b8186613138565b945060018216600081146131a657600181146131bb576131ee565b60ff19831686528115158202860193506131ee565b6131c485612ce5565b60005b838110156131e6578154818901526001820191506020810190506131c7565b838801955050505b50505092915050565b60006132038286613143565b915061320f8285613143565b915061321b8284613174565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132846026836125c4565b915061328f82613228565b604082019050919050565b600060208201905081810360008301526132b381613277565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132f06020836125c4565b91506132fb826132ba565b602082019050919050565b6000602082019050818103600083015261331f816132e3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061334d82613326565b6133578185613331565b93506133678185602086016125d5565b613370816125ff565b840191505092915050565b60006080820190506133906000830187612700565b61339d6020830186612700565b6133aa6040830185612796565b81810360608301526133bc8184613342565b905095945050505050565b6000815190506133d68161252a565b92915050565b6000602082840312156133f2576133f16124f4565b5b6000613400848285016133c7565b9150509291505056fea2646970667358221220e1178a8f03a1d36075251e514878faf2ede92460dbeea2db952b7ff118a9cf1164736f6c63430008110033

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

0000000000000000000000000f520c353e395de66cc70c8d6a6713813db23a8f

-----Decoded View---------------
Arg [0] : receiver (address): 0x0F520C353E395De66cc70C8d6a6713813db23a8f

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000f520c353e395de66cc70c8d6a6713813db23a8f


Deployed Bytecode Sourcemap

741:4854:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9106:630:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9990:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16303:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4609:254:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15763:390:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5845:317;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19912:2756;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22759:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1111:27:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4336:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;877:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2223:606;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11342:150:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;990:30:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6996:230:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1822:101:4;;;;;;;;;;;;;:::i;:::-;;2985:195:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1192:85:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10159:102:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;949:34:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16844:303:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3692:103:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1479:596;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23519:388:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5243:350:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;911:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3937:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17297:162:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3322:104:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2072:198:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9106:630:2;9191:4;9524:10;9509:25;;:11;:25;;;;:101;;;;9600:10;9585:25;;:11;:25;;;;9509:101;:177;;;;9676:10;9661:25;;:11;:25;;;;9509:177;9490:196;;9106:630;;;:::o;9990:98::-;10044:13;10076:5;10069:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9990:98;:::o;16303:214::-;16379:7;16403:16;16411:7;16403;:16::i;:::-;16398:64;;16428:34;;;;;;;;;;;;;;16398:64;16480:15;:24;16496:7;16480:24;;;;;;;;;;;:30;;;;;;;;;;;;16473:37;;16303:214;;;:::o;4609:254:5:-;1085:13:4;:11;:13::i;:::-;4709:17:5::1;4701:26:::0;::::1;;;;;;;:::i;:::-;;4686:12;:41;4682:84;;;4748:18;;;;;;;;;;;;;;4682:84;4800:12;4789:24;;;;;;;;:::i;:::-;;4777:9;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;4829:27;4846:9;;;;;;;;;;;4829:27;;;;;;:::i;:::-;;;;;;;;4609:254:::0;:::o;15763:390:2:-;15843:13;15859:16;15867:7;15859;:16::i;:::-;15843:32;;15913:5;15890:28;;:19;:17;:19::i;:::-;:28;;;15886:172;;15937:44;15954:5;15961:19;:17;:19::i;:::-;15937:16;:44::i;:::-;15932:126;;16008:35;;;;;;;;;;;;;;15932:126;15886:172;16101:2;16068:15;:24;16084:7;16068:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16138:7;16134:2;16118:28;;16127:5;16118:28;;;;;;;;;;;;15833:320;15763:390;;:::o;5845:317::-;5906:7;6130:15;:13;:15::i;:::-;6115:12;;6099:13;;:28;:46;6092:53;;5845:317;:::o;19912:2756::-;20041:27;20071;20090:7;20071:18;:27::i;:::-;20041:57;;20154:4;20113:45;;20129:19;20113:45;;;20109:86;;20167:28;;;;;;;;;;;;;;20109:86;20207:27;20236:23;20263:35;20290:7;20263:26;:35::i;:::-;20206:92;;;;20395:68;20420:15;20437:4;20443:19;:17;:19::i;:::-;20395:24;:68::i;:::-;20390:179;;20482:43;20499:4;20505:19;:17;:19::i;:::-;20482:16;:43::i;:::-;20477:92;;20534:35;;;;;;;;;;;;;;20477:92;20390:179;20598:1;20584:16;;:2;:16;;;20580:52;;20609:23;;;;;;;;;;;;;;20580:52;20643:43;20665:4;20671:2;20675:7;20684:1;20643:21;:43::i;:::-;20775:15;20772:157;;;20913:1;20892:19;20885:30;20772:157;21301:18;:24;21320:4;21301:24;;;;;;;;;;;;;;;;21299:26;;;;;;;;;;;;21369:18;:22;21388:2;21369:22;;;;;;;;;;;;;;;;21367:24;;;;;;;;;;;21684:143;21720:2;21768:45;21783:4;21789:2;21793:19;21768:14;:45::i;:::-;2349:8;21740:73;21684:18;:143::i;:::-;21655:17;:26;21673:7;21655:26;;;;;;;;;;;:172;;;;21995:1;2349:8;21944:19;:47;:52;21940:617;;22016:19;22048:1;22038:7;:11;22016:33;;22203:1;22169:17;:30;22187:11;22169:30;;;;;;;;;;;;:35;22165:378;;22305:13;;22290:11;:28;22286:239;;22483:19;22450:17;:30;22468:11;22450:30;;;;;;;;;;;:52;;;;22286:239;22165:378;21998:559;21940:617;22601:7;22597:2;22582:27;;22591:4;22582:27;;;;;;;;;;;;22619:42;22640:4;22646:2;22650:7;22659:1;22619:20;:42::i;:::-;20031:2637;;;19912:2756;;;:::o;22759:179::-;22892:39;22909:4;22915:2;22919:7;22892:39;;;;;;;;;;;;:16;:39::i;:::-;22759:179;;;:::o;1111:27:5:-;;;;;;;;;;;;;:::o;4336:104::-;1085:13:4;:11;:13::i;:::-;4426:7:5::1;;4410:13;:23;;;;;;;:::i;:::-;;4336:104:::0;;:::o;877:27::-;;;;;;;;;;;;;:::o;2223:606::-;2311:17;5034:9;5020:23;;:10;:23;;;5016:44;;5052:8;;;;;;;;;;;;;;5016:44;5087:10;5074:23;;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:23;;;;;;;;:::i;:::-;;;5070:54;;5106:18;;;;;;;;;;;;;;5070:54;2372:5:::1;;2361:8;:16;;;;;;:::i;:::-;2349:9;:28;2345:61;;;2386:20;;;;;;;;;;;;;;2345:61;2483:10;;;;;;;;;;;2420:73;;2472:8;2420:60;;2449:19;2457:10;2449:7;:19::i;:::-;2421:47;;:25;2435:10;2421:13;:25::i;:::-;:47;;;;:::i;:::-;2420:60;;;;:::i;:::-;:73;2416:119;;;2514:21;;;;;;;;;;;;;;2416:119;2577:9;;2566:8;2549:25;;:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:37;2545:66;;;2595:16;;;;;;;;;;;;;;2545:66;2626:12;2644:7;:5;:7::i;:::-;:12;;2664:9;2644:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2625:53;;;2700:7;2692:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2747:32;2758:10;2770:8;2747:32;;:10;:32::i;:::-;2801:10;2794:28;;;2813:8;2794:28;;;;;;:::i;:::-;;;;;;;;2334:495;2223:606:::0;;:::o;11342:150:2:-;11414:7;11456:27;11475:7;11456:18;:27::i;:::-;11433:52;;11342:150;;;:::o;990:30:5:-;;;;;;;;;;;;;:::o;6996:230:2:-;7068:7;7108:1;7091:19;;:5;:19;;;7087:60;;7119:28;;;;;;;;;;;;;;7087:60;1317:13;7164:18;:25;7183:5;7164:25;;;;;;;;;;;;;;;;:55;7157:62;;6996:230;;;:::o;1822:101:4:-;1085:13;:11;:13::i;:::-;1886:30:::1;1913:1;1886:18;:30::i;:::-;1822:101::o:0;2985:195:5:-;1085:13:4;:11;:13::i;:::-;3099:9:5::1;;3088:8;3071:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:37;3067:66;;;3117:16;;;;;;;;;;;;;;3067:66;3143:30;3154:8;3164;3143:10;:30::i;:::-;2985:195:::0;;:::o;1192:85:4:-;1238:7;1264:6;;;;;;;;;;;1257:13;;1192:85;:::o;10159:102:2:-;10215:13;10247:7;10240:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10159:102;:::o;949:34:5:-;;;;:::o;16844:303:2:-;16954:19;:17;:19::i;:::-;16942:31;;:8;:31;;;16938:61;;16982:17;;;;;;;;;;;;;;16938:61;17062:8;17010:18;:39;17029:19;:17;:19::i;:::-;17010:39;;;;;;;;;;;;;;;:49;17050:8;17010:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17121:8;17085:55;;17100:19;:17;:19::i;:::-;17085:55;;;17131:8;17085:55;;;;;;:::i;:::-;;;;;;;;16844:303;;:::o;3692:103:5:-;1085:13:4;:11;:13::i;:::-;3774:14:5::1;3766:5;:22;;;;3692:103:::0;:::o;1479:596::-;1562:17;5034:9;5020:23;;:10;:23;;;5016:44;;5052:8;;;;;;;;;;;;;;5016:44;5087:10;5074:23;;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:23;;;;;;;;:::i;:::-;;;5070:54;;5106:18;;;;;;;;;;;;;;5070:54;1623:5:::1;;1612:8;:16;;;;;;:::i;:::-;1600:9;:28;1596:61;;;1637:20;;;;;;;;;;;;;;1596:61;1734:10;;;;;;;;;;;1671:73;;1723:8;1671:60;;1700:19;1708:10;1700:7;:19::i;:::-;1672:47;;:25;1686:10;1672:13;:25::i;:::-;:47;;;;:::i;:::-;1671:60;;;;:::i;:::-;:73;1667:119;;;1765:21;;;;;;;;;;;;;;1667:119;1828:9;;1817:8;1800:25;;:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:37;1796:66;;;1846:16;;;;;;;;;;;;;;1796:66;1877:12;1895:7;:5;:7::i;:::-;:12;;1915:9;1895:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1876:53;;;1951:7;1943:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;1998:27;2004:10;2016:8;1998:27;;:5;:27::i;:::-;2047:10;2040:28;;;2059:8;2040:28;;;;;;:::i;:::-;;;;;;;;1585:490;1479:596:::0;;:::o;23519:388:2:-;23680:31;23693:4;23699:2;23703:7;23680:12;:31::i;:::-;23743:1;23725:2;:14;;;:19;23721:180;;23763:56;23794:4;23800:2;23804:7;23813:5;23763:30;:56::i;:::-;23758:143;;23846:40;;;;;;;;;;;;;;23758:143;23721:180;23519:388;;;;:::o;5243:350:5:-;5327:13;5357:16;5365:7;5357;:16::i;:::-;5352:59;;5382:29;;;;;;;;;;;;;;5352:59;5425:21;5449:10;:8;:10::i;:::-;5425:34;;5505:1;5486:7;5480:21;:26;:101;;;;;;;;;;;;;;;;;5533:7;5542:18;5552:7;5542:9;:18::i;:::-;5561:13;5516:59;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5480:101;5473:108;;;5243:350;;;:::o;911:32::-;;;;:::o;3937:112::-;3994:7;4020:22;4034:7;4020:13;:22::i;:::-;4013:29;;3937:112;;;:::o;17297:162:2:-;17394:4;17417:18;:25;17436:5;17417:25;;;;;;;;;;;;;;;:35;17443:8;17417:35;;;;;;;;;;;;;;;;;;;;;;;;;17410:42;;17297:162;;;;:::o;3322:104:5:-;1085:13:4;:11;:13::i;:::-;3407:12:5::1;3394:10;;:25;;;;;;;;;;;;;;;;;;3322:104:::0;:::o;2072:198:4:-;1085:13;:11;:13::i;:::-;2180:1:::1;2160:22;;:8;:22;;::::0;2152:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2235:28;2254:8;2235:18;:28::i;:::-;2072:198:::0;:::o;17708:277:2:-;17773:4;17827:7;17808:15;:13;:15::i;:::-;:26;;:65;;;;;17860:13;;17850:7;:23;17808:65;:151;;;;;17958:1;2075:8;17910:17;:26;17928:7;17910:26;;;;;;;;;;;;:44;:49;17808:151;17789:170;;17708:277;;;:::o;1350:130:4:-;1424:12;:10;:12::i;:::-;1413:23;;:7;:5;:7::i;:::-;:23;;;1405:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1350:130::o;38294:103:2:-;38354:7;38380:10;38373:17;;38294:103;:::o;5377:90::-;5433:7;5459:1;5452:8;;5377:90;:::o;12466:1249::-;12533:7;12552:12;12567:7;12552:22;;12632:4;12613:15;:13;:15::i;:::-;:23;12609:1042;;12665:13;;12658:4;:20;12654:997;;;12702:14;12719:17;:23;12737:4;12719:23;;;;;;;;;;;;12702:40;;12834:1;2075:8;12806:6;:24;:29;12802:831;;13461:111;13478:1;13468:6;:11;13461:111;;13520:17;:25;13538:6;;;;;;;13520:25;;;;;;;;;;;;13511:34;;13461:111;;;13604:6;13597:13;;;;;;12802:831;12680:971;12654:997;12609:1042;13677:31;;;;;;;;;;;;;;12466:1249;;;;:::o;18843:468::-;18942:27;18971:23;19010:38;19051:15;:24;19067:7;19051:24;;;;;;;;;;;19010:65;;19219:18;19196:41;;19275:19;19269:26;19250:45;;19182:123;18843:468;;;:::o;18089:646::-;18234:11;18396:16;18389:5;18385:28;18376:37;;18554:16;18543:9;18539:32;18526:45;;18702:15;18691:9;18688:30;18680:5;18669:9;18666:20;18663:56;18653:66;;18089:646;;;;;:::o;24551:154::-;;;;;:::o;37621:304::-;37752:7;37771:16;2470:3;37797:19;:41;;37771:68;;2470:3;37864:31;37875:4;37881:2;37885:9;37864:10;:31::i;:::-;37856:40;;:62;;37849:69;;;37621:304;;;;;:::o;14248:443::-;14328:14;14493:16;14486:5;14482:28;14473:37;;14668:5;14654:11;14629:23;14625:41;14622:52;14615:5;14612:63;14602:73;;14248:443;;;;:::o;25352:153::-;;;;;:::o;7861:135::-;7916:6;1682:3;7948:18;:25;7967:5;7948:25;;;;;;;;;;;;;;;;:40;;7934:55;;7861:135;;;:::o;7303:176::-;7364:7;1317:13;1452:2;7391:18;:25;7410:5;7391:25;;;;;;;;;;;;;;;;:50;;7390:82;7383:89;;7303:176;;;:::o;6255:290::-;6310:7;6513:15;:13;:15::i;:::-;6497:13;;:31;6490:38;;6255:290;:::o;29693:1440::-;29770:20;29793:13;;29770:36;;29834:1;29820:16;;:2;:16;;;29816:48;;29845:19;;;;;;;;;;;;;;29816:48;29890:1;29878:8;:13;29874:44;;29900:18;;;;;;;;;;;;;;29874:44;3093:4;29932:8;:41;29928:88;;;29982:34;;;;;;;;;;;;;;29928:88;30027:61;30057:1;30061:2;30065:12;30079:8;30027:21;:61::i;:::-;30486:1;1452:2;30456:1;:26;;30455:32;30443:8;:45;30417:18;:22;30436:2;30417:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;30758:136;30794:2;30847:33;30870:1;30874:2;30878:1;30847:14;:33::i;:::-;30814:30;30835:8;30814:20;:30::i;:::-;:66;30758:18;:136::i;:::-;30724:17;:31;30742:12;30724:31;;;;;;;;;;;:170;;;;30989:2;30914:78;;30985:1;30914:78;;30934:12;30914:78;30974:1;30963:8;30948:12;:23;:27;30914:78;;;;;;:::i;:::-;;;;;;;;31038:8;31023:12;:23;31007:13;:39;;;;31066:60;31095:1;31099:2;31103:12;31117:8;31066:20;:60::i;:::-;29760:1373;29693:1440;;:::o;2424:187:4:-;2497:16;2516:6;;;;;;;;;;;2497:25;;2541:8;2532:6;;:17;;;;;;;;;;;;;;;;;;2595:8;2564:40;;2585:8;2564:40;;;;;;;;;;;;2487:124;2424:187;:::o;27076:2396:2:-;27148:20;27171:13;;27148:36;;27210:1;27198:8;:13;27194:44;;27220:18;;;;;;;;;;;;;;27194:44;27249:61;27279:1;27283:2;27287:12;27301:8;27249:21;:61::i;:::-;27782:1;1452:2;27752:1;:26;;27751:32;27739:8;:45;27713:18;:22;27732:2;27713:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28054:136;28090:2;28143:33;28166:1;28170:2;28174:1;28143:14;:33::i;:::-;28110:30;28131:8;28110:20;:30::i;:::-;:66;28054:18;:136::i;:::-;28020:17;:31;28038:12;28020:31;;;;;;;;;;;:170;;;;28205:16;28235:11;28264:8;28249:12;:23;28235:37;;28514:16;28510:2;28506:25;28494:37;;28878:12;28839:8;28799:1;28738:25;28680:1;28620;28594:328;28999:1;28985:12;28981:20;28940:339;29039:3;29030:7;29027:16;28940:339;;29253:7;29243:8;29240:1;29213:25;29210:1;29207;29202:59;29091:1;29082:7;29078:15;29067:26;;28940:339;;;28944:75;29322:1;29310:8;:13;29306:45;;29332:19;;;;;;;;;;;;;;29306:45;29382:3;29366:13;:19;;;;27493:1903;;29405:60;29434:1;29438:2;29442:12;29456:8;29405:20;:60::i;:::-;27138:2334;27076:2396;;:::o;25933:697::-;26091:4;26136:2;26111:45;;;26157:19;:17;:19::i;:::-;26178:4;26184:7;26193:5;26111:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26107:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26406:1;26389:6;:13;:18;26385:229;;26434:40;;;;;;;;;;;;;;26385:229;26574:6;26568:13;26559:6;26555:2;26551:15;26544:38;26107:517;26277:54;;;26267:64;;;:6;:64;;;;26260:71;;;25933:697;;;;;;:::o;4129:112:5:-;4189:13;4221;4214:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4129:112;:::o;38494:1548:2:-;38559:17;38978:4;38971;38965:11;38961:22;38954:29;;39068:3;39062:4;39055:17;39171:3;39405:5;39387:419;39413:1;39387:419;;;39452:1;39447:3;39443:11;39436:18;;39620:2;39614:4;39610:13;39606:2;39602:22;39597:3;39589:36;39712:2;39706:4;39702:13;39694:21;;39777:4;39387:419;39767:25;39387:419;39391:21;39843:3;39838;39834:13;39956:4;39951:3;39947:14;39940:21;;40019:6;40014:3;40007:19;38597:1439;;38494:1548;;;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;37332:143:2:-;37465:6;37332:143;;;;;:::o;14788:318::-;14858:14;15087:1;15077:8;15074:15;15048:24;15044:46;15034:56;;14788:318;;;:::o;7:75:7:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:180::-;7392:77;7389:1;7382:88;7489:4;7486:1;7479:15;7513:4;7510:1;7503:15;7530:120;7618:1;7611:5;7608:12;7598:46;;7624:18;;:::i;:::-;7598:46;7530:120;:::o;7656:141::-;7708:7;7737:5;7726:16;;7743:48;7785:5;7743:48;:::i;:::-;7656:141;;;:::o;7803:::-;7866:9;7899:39;7932:5;7899:39;:::i;:::-;7886:52;;7803:141;;;:::o;7950:157::-;8050:50;8094:5;8050:50;:::i;:::-;8045:3;8038:63;7950:157;;:::o;8113:248::-;8219:4;8257:2;8246:9;8242:18;8234:26;;8270:84;8351:1;8340:9;8336:17;8327:6;8270:84;:::i;:::-;8113:248;;;;:::o;8367:101::-;8403:7;8443:18;8436:5;8432:30;8421:41;;8367:101;;;:::o;8474:120::-;8546:23;8563:5;8546:23;:::i;:::-;8539:5;8536:34;8526:62;;8584:1;8581;8574:12;8526:62;8474:120;:::o;8600:137::-;8645:5;8683:6;8670:20;8661:29;;8699:32;8725:5;8699:32;:::i;:::-;8600:137;;;;:::o;8743:327::-;8801:6;8850:2;8838:9;8829:7;8825:23;8821:32;8818:119;;;8856:79;;:::i;:::-;8818:119;8976:1;9001:52;9045:7;9036:6;9025:9;9021:22;9001:52;:::i;:::-;8991:62;;8947:116;8743:327;;;;:::o;9076:115::-;9161:23;9178:5;9161:23;:::i;:::-;9156:3;9149:36;9076:115;;:::o;9197:218::-;9288:4;9326:2;9315:9;9311:18;9303:26;;9339:69;9405:1;9394:9;9390:17;9381:6;9339:69;:::i;:::-;9197:218;;;;:::o;9421:329::-;9480:6;9529:2;9517:9;9508:7;9504:23;9500:32;9497:119;;;9535:79;;:::i;:::-;9497:119;9655:1;9680:53;9725:7;9716:6;9705:9;9701:22;9680:53;:::i;:::-;9670:63;;9626:117;9421:329;;;;:::o;9756:116::-;9826:21;9841:5;9826:21;:::i;:::-;9819:5;9816:32;9806:60;;9862:1;9859;9852:12;9806:60;9756:116;:::o;9878:133::-;9921:5;9959:6;9946:20;9937:29;;9975:30;9999:5;9975:30;:::i;:::-;9878:133;;;;:::o;10017:468::-;10082:6;10090;10139:2;10127:9;10118:7;10114:23;10110:32;10107:119;;;10145:79;;:::i;:::-;10107:119;10265:1;10290:53;10335:7;10326:6;10315:9;10311:22;10290:53;:::i;:::-;10280:63;;10236:117;10392:2;10418:50;10460:7;10451:6;10440:9;10436:22;10418:50;:::i;:::-;10408:60;;10363:115;10017:468;;;;;:::o;10491:117::-;10600:1;10597;10590:12;10614:180;10662:77;10659:1;10652:88;10759:4;10756:1;10749:15;10783:4;10780:1;10773:15;10800:281;10883:27;10905:4;10883:27;:::i;:::-;10875:6;10871:40;11013:6;11001:10;10998:22;10977:18;10965:10;10962:34;10959:62;10956:88;;;11024:18;;:::i;:::-;10956:88;11064:10;11060:2;11053:22;10843:238;10800:281;;:::o;11087:129::-;11121:6;11148:20;;:::i;:::-;11138:30;;11177:33;11205:4;11197:6;11177:33;:::i;:::-;11087:129;;;:::o;11222:307::-;11283:4;11373:18;11365:6;11362:30;11359:56;;;11395:18;;:::i;:::-;11359:56;11433:29;11455:6;11433:29;:::i;:::-;11425:37;;11517:4;11511;11507:15;11499:23;;11222:307;;;:::o;11535:146::-;11632:6;11627:3;11622;11609:30;11673:1;11664:6;11659:3;11655:16;11648:27;11535:146;;;:::o;11687:423::-;11764:5;11789:65;11805:48;11846:6;11805:48;:::i;:::-;11789:65;:::i;:::-;11780:74;;11877:6;11870:5;11863:21;11915:4;11908:5;11904:16;11953:3;11944:6;11939:3;11935:16;11932:25;11929:112;;;11960:79;;:::i;:::-;11929:112;12050:54;12097:6;12092:3;12087;12050:54;:::i;:::-;11770:340;11687:423;;;;;:::o;12129:338::-;12184:5;12233:3;12226:4;12218:6;12214:17;12210:27;12200:122;;12241:79;;:::i;:::-;12200:122;12358:6;12345:20;12383:78;12457:3;12449:6;12442:4;12434:6;12430:17;12383:78;:::i;:::-;12374:87;;12190:277;12129:338;;;;:::o;12473:943::-;12568:6;12576;12584;12592;12641:3;12629:9;12620:7;12616:23;12612:33;12609:120;;;12648:79;;:::i;:::-;12609:120;12768:1;12793:53;12838:7;12829:6;12818:9;12814:22;12793:53;:::i;:::-;12783:63;;12739:117;12895:2;12921:53;12966:7;12957:6;12946:9;12942:22;12921:53;:::i;:::-;12911:63;;12866:118;13023:2;13049:53;13094:7;13085:6;13074:9;13070:22;13049:53;:::i;:::-;13039:63;;12994:118;13179:2;13168:9;13164:18;13151:32;13210:18;13202:6;13199:30;13196:117;;;13232:79;;:::i;:::-;13196:117;13337:62;13391:7;13382:6;13371:9;13367:22;13337:62;:::i;:::-;13327:72;;13122:287;12473:943;;;;;;;:::o;13422:474::-;13490:6;13498;13547:2;13535:9;13526:7;13522:23;13518:32;13515:119;;;13553:79;;:::i;:::-;13515:119;13673:1;13698:53;13743:7;13734:6;13723:9;13719:22;13698:53;:::i;:::-;13688:63;;13644:117;13800:2;13826:53;13871:7;13862:6;13851:9;13847:22;13826:53;:::i;:::-;13816:63;;13771:118;13422:474;;;;;:::o;13902:180::-;13950:77;13947:1;13940:88;14047:4;14044:1;14037:15;14071:4;14068:1;14061:15;14088:320;14132:6;14169:1;14163:4;14159:12;14149:22;;14216:1;14210:4;14206:12;14237:18;14227:81;;14293:4;14285:6;14281:17;14271:27;;14227:81;14355:2;14347:6;14344:14;14324:18;14321:38;14318:84;;14374:18;;:::i;:::-;14318:84;14139:269;14088:320;;;:::o;14414:97::-;14473:6;14501:3;14491:13;;14414:97;;;;:::o;14517:141::-;14566:4;14589:3;14581:11;;14612:3;14609:1;14602:14;14646:4;14643:1;14633:18;14625:26;;14517:141;;;:::o;14664:93::-;14701:6;14748:2;14743;14736:5;14732:14;14728:23;14718:33;;14664:93;;;:::o;14763:107::-;14807:8;14857:5;14851:4;14847:16;14826:37;;14763:107;;;;:::o;14876:393::-;14945:6;14995:1;14983:10;14979:18;15018:97;15048:66;15037:9;15018:97;:::i;:::-;15136:39;15166:8;15155:9;15136:39;:::i;:::-;15124:51;;15208:4;15204:9;15197:5;15193:21;15184:30;;15257:4;15247:8;15243:19;15236:5;15233:30;15223:40;;14952:317;;14876:393;;;;;:::o;15275:60::-;15303:3;15324:5;15317:12;;15275:60;;;:::o;15341:142::-;15391:9;15424:53;15442:34;15451:24;15469:5;15451:24;:::i;:::-;15442:34;:::i;:::-;15424:53;:::i;:::-;15411:66;;15341:142;;;:::o;15489:75::-;15532:3;15553:5;15546:12;;15489:75;;;:::o;15570:269::-;15680:39;15711:7;15680:39;:::i;:::-;15741:91;15790:41;15814:16;15790:41;:::i;:::-;15782:6;15775:4;15769:11;15741:91;:::i;:::-;15735:4;15728:105;15646:193;15570:269;;;:::o;15845:73::-;15890:3;15845:73;:::o;15924:189::-;16001:32;;:::i;:::-;16042:65;16100:6;16092;16086:4;16042:65;:::i;:::-;15977:136;15924:189;;:::o;16119:186::-;16179:120;16196:3;16189:5;16186:14;16179:120;;;16250:39;16287:1;16280:5;16250:39;:::i;:::-;16223:1;16216:5;16212:13;16203:22;;16179:120;;;16119:186;;:::o;16311:543::-;16412:2;16407:3;16404:11;16401:446;;;16446:38;16478:5;16446:38;:::i;:::-;16530:29;16548:10;16530:29;:::i;:::-;16520:8;16516:44;16713:2;16701:10;16698:18;16695:49;;;16734:8;16719:23;;16695:49;16757:80;16813:22;16831:3;16813:22;:::i;:::-;16803:8;16799:37;16786:11;16757:80;:::i;:::-;16416:431;;16401:446;16311:543;;;:::o;16860:117::-;16914:8;16964:5;16958:4;16954:16;16933:37;;16860:117;;;;:::o;16983:169::-;17027:6;17060:51;17108:1;17104:6;17096:5;17093:1;17089:13;17060:51;:::i;:::-;17056:56;17141:4;17135;17131:15;17121:25;;17034:118;16983:169;;;;:::o;17157:295::-;17233:4;17379:29;17404:3;17398:4;17379:29;:::i;:::-;17371:37;;17441:3;17438:1;17434:11;17428:4;17425:21;17417:29;;17157:295;;;;:::o;17457:1403::-;17581:44;17621:3;17616;17581:44;:::i;:::-;17690:18;17682:6;17679:30;17676:56;;;17712:18;;:::i;:::-;17676:56;17756:38;17788:4;17782:11;17756:38;:::i;:::-;17841:67;17901:6;17893;17887:4;17841:67;:::i;:::-;17935:1;17964:2;17956:6;17953:14;17981:1;17976:632;;;;18652:1;18669:6;18666:84;;;18725:9;18720:3;18716:19;18703:33;18694:42;;18666:84;18776:67;18836:6;18829:5;18776:67;:::i;:::-;18770:4;18763:81;18625:229;17946:908;;17976:632;18028:4;18024:9;18016:6;18012:22;18062:37;18094:4;18062:37;:::i;:::-;18121:1;18135:215;18149:7;18146:1;18143:14;18135:215;;;18235:9;18230:3;18226:19;18213:33;18205:6;18198:49;18286:1;18278:6;18274:14;18264:24;;18333:2;18322:9;18318:18;18305:31;;18172:4;18169:1;18165:12;18160:17;;18135:215;;;18378:6;18369:7;18366:19;18363:186;;;18443:9;18438:3;18434:19;18421:33;18486:48;18528:4;18520:6;18516:17;18505:9;18486:48;:::i;:::-;18478:6;18471:64;18386:163;18363:186;18595:1;18591;18583:6;18579:14;18575:22;18569:4;18562:36;17983:625;;;17946:908;;17556:1304;;;17457:1403;;;:::o;18866:180::-;18914:77;18911:1;18904:88;19011:4;19008:1;19001:15;19035:4;19032:1;19025:15;19052:410;19092:7;19115:20;19133:1;19115:20;:::i;:::-;19110:25;;19149:20;19167:1;19149:20;:::i;:::-;19144:25;;19204:1;19201;19197:9;19226:30;19244:11;19226:30;:::i;:::-;19215:41;;19405:1;19396:7;19392:15;19389:1;19386:22;19366:1;19359:9;19339:83;19316:139;;19435:18;;:::i;:::-;19316:139;19100:362;19052:410;;;;:::o;19468:194::-;19508:4;19528:20;19546:1;19528:20;:::i;:::-;19523:25;;19562:20;19580:1;19562:20;:::i;:::-;19557:25;;19606:1;19603;19599:9;19591:17;;19630:1;19624:4;19621:11;19618:37;;;19635:18;;:::i;:::-;19618:37;19468:194;;;;:::o;19668:191::-;19708:3;19727:20;19745:1;19727:20;:::i;:::-;19722:25;;19761:20;19779:1;19761:20;:::i;:::-;19756:25;;19804:1;19801;19797:9;19790:16;;19825:3;19822:1;19819:10;19816:36;;;19832:18;;:::i;:::-;19816:36;19668:191;;;;:::o;19865:147::-;19966:11;20003:3;19988:18;;19865:147;;;;:::o;20018:114::-;;:::o;20138:398::-;20297:3;20318:83;20399:1;20394:3;20318:83;:::i;:::-;20311:90;;20410:93;20499:3;20410:93;:::i;:::-;20528:1;20523:3;20519:11;20512:18;;20138:398;;;:::o;20542:379::-;20726:3;20748:147;20891:3;20748:147;:::i;:::-;20741:154;;20912:3;20905:10;;20542:379;;;:::o;20927:166::-;21067:18;21063:1;21055:6;21051:14;21044:42;20927:166;:::o;21099:366::-;21241:3;21262:67;21326:2;21321:3;21262:67;:::i;:::-;21255:74;;21338:93;21427:3;21338:93;:::i;:::-;21456:2;21451:3;21447:12;21440:19;;21099:366;;;:::o;21471:419::-;21637:4;21675:2;21664:9;21660:18;21652:26;;21724:9;21718:4;21714:20;21710:1;21699:9;21695:17;21688:47;21752:131;21878:4;21752:131;:::i;:::-;21744:139;;21471:419;;;:::o;21896:140::-;21945:9;21978:52;21996:33;22005:23;22022:5;22005:23;:::i;:::-;21996:33;:::i;:::-;21978:52;:::i;:::-;21965:65;;21896:140;;;:::o;22042:129::-;22128:36;22158:5;22128:36;:::i;:::-;22123:3;22116:49;22042:129;;:::o;22177:220::-;22269:4;22307:2;22296:9;22292:18;22284:26;;22320:70;22387:1;22376:9;22372:17;22363:6;22320:70;:::i;:::-;22177:220;;;;:::o;22403:148::-;22505:11;22542:3;22527:18;;22403:148;;;;:::o;22557:390::-;22663:3;22691:39;22724:5;22691:39;:::i;:::-;22746:89;22828:6;22823:3;22746:89;:::i;:::-;22739:96;;22844:65;22902:6;22897:3;22890:4;22883:5;22879:16;22844:65;:::i;:::-;22934:6;22929:3;22925:16;22918:23;;22667:280;22557:390;;;;:::o;22977:874::-;23080:3;23117:5;23111:12;23146:36;23172:9;23146:36;:::i;:::-;23198:89;23280:6;23275:3;23198:89;:::i;:::-;23191:96;;23318:1;23307:9;23303:17;23334:1;23329:166;;;;23509:1;23504:341;;;;23296:549;;23329:166;23413:4;23409:9;23398;23394:25;23389:3;23382:38;23475:6;23468:14;23461:22;23453:6;23449:35;23444:3;23440:45;23433:52;;23329:166;;23504:341;23571:38;23603:5;23571:38;:::i;:::-;23631:1;23645:154;23659:6;23656:1;23653:13;23645:154;;;23733:7;23727:14;23723:1;23718:3;23714:11;23707:35;23783:1;23774:7;23770:15;23759:26;;23681:4;23678:1;23674:12;23669:17;;23645:154;;;23828:6;23823:3;23819:16;23812:23;;23511:334;;23296:549;;23084:767;;22977:874;;;;:::o;23857:589::-;24082:3;24104:95;24195:3;24186:6;24104:95;:::i;:::-;24097:102;;24216:95;24307:3;24298:6;24216:95;:::i;:::-;24209:102;;24328:92;24416:3;24407:6;24328:92;:::i;:::-;24321:99;;24437:3;24430:10;;23857:589;;;;;;:::o;24452:225::-;24592:34;24588:1;24580:6;24576:14;24569:58;24661:8;24656:2;24648:6;24644:15;24637:33;24452:225;:::o;24683:366::-;24825:3;24846:67;24910:2;24905:3;24846:67;:::i;:::-;24839:74;;24922:93;25011:3;24922:93;:::i;:::-;25040:2;25035:3;25031:12;25024:19;;24683:366;;;:::o;25055:419::-;25221:4;25259:2;25248:9;25244:18;25236:26;;25308:9;25302:4;25298:20;25294:1;25283:9;25279:17;25272:47;25336:131;25462:4;25336:131;:::i;:::-;25328:139;;25055:419;;;:::o;25480:182::-;25620:34;25616:1;25608:6;25604:14;25597:58;25480:182;:::o;25668:366::-;25810:3;25831:67;25895:2;25890:3;25831:67;:::i;:::-;25824:74;;25907:93;25996:3;25907:93;:::i;:::-;26025:2;26020:3;26016:12;26009:19;;25668:366;;;:::o;26040:419::-;26206:4;26244:2;26233:9;26229:18;26221:26;;26293:9;26287:4;26283:20;26279:1;26268:9;26264:17;26257:47;26321:131;26447:4;26321:131;:::i;:::-;26313:139;;26040:419;;;:::o;26465:98::-;26516:6;26550:5;26544:12;26534:22;;26465:98;;;:::o;26569:168::-;26652:11;26686:6;26681:3;26674:19;26726:4;26721:3;26717:14;26702:29;;26569:168;;;;:::o;26743:373::-;26829:3;26857:38;26889:5;26857:38;:::i;:::-;26911:70;26974:6;26969:3;26911:70;:::i;:::-;26904:77;;26990:65;27048:6;27043:3;27036:4;27029:5;27025:16;26990:65;:::i;:::-;27080:29;27102:6;27080:29;:::i;:::-;27075:3;27071:39;27064:46;;26833:283;26743:373;;;;:::o;27122:640::-;27317:4;27355:3;27344:9;27340:19;27332:27;;27369:71;27437:1;27426:9;27422:17;27413:6;27369:71;:::i;:::-;27450:72;27518:2;27507:9;27503:18;27494:6;27450:72;:::i;:::-;27532;27600:2;27589:9;27585:18;27576:6;27532:72;:::i;:::-;27651:9;27645:4;27641:20;27636:2;27625:9;27621:18;27614:48;27679:76;27750:4;27741:6;27679:76;:::i;:::-;27671:84;;27122:640;;;;;;;:::o;27768:141::-;27824:5;27855:6;27849:13;27840:22;;27871:32;27897:5;27871:32;:::i;:::-;27768:141;;;;:::o;27915:349::-;27984:6;28033:2;28021:9;28012:7;28008:23;28004:32;28001:119;;;28039:79;;:::i;:::-;28001:119;28159:1;28184:63;28239:7;28230:6;28219:9;28215:22;28184:63;:::i;:::-;28174:73;;28130:127;27915:349;;;;:::o

Swarm Source

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