ETH Price: $2,970.82 (-0.78%)
Gas: 5 Gwei

Token

Bonfire Club (BFC)
 

Overview

Max Total Supply

1,182 BFC

Holders

263

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
m2capital.eth
Balance
3 BFC
0x2F58aD6678E1AFB3d99E33478DA6CA30A6a3F46C
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:
BonfireClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 7: BonfireClub.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

error IncorrectSignature();
error SoldOut();
error MaxMintTokensExceeded();
error AddressCantBeBurner();
error InvalidMaxSupply();
error HigherMaxSupplyNotAllowed();
error CantReduceCurrentSupply();

// @author web_n3rdz (n3rdz.xyz)
contract BonfireClub is ERC721A, Ownable {
    using ECDSA for bytes32;

    address private _signerAddress;

    address payable private immutable _team1;
    address payable private immutable _team2;
    address payable private immutable _team3;
    address payable private immutable _team4;
    address payable private immutable _team5;

    string public baseURI;
    uint256 public maxSupply;

    constructor( uint256 newMaxSupply, address newSignerAddress, string memory newBaseURI, address[5] memory teamAddresses ) ERC721A("Bonfire Club", "BFC") {
        maxSupply = newMaxSupply;
        baseURI = newBaseURI;
        _signerAddress = newSignerAddress;

        _team1 = payable(teamAddresses[0]);
        _team2 = payable(teamAddresses[1]);
        _team3 = payable(teamAddresses[2]);
        _team4 = payable(teamAddresses[3]);
        _team5 = payable(teamAddresses[4]);
    }

    // public functions

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

        _mint(msg.sender, quantity);
    }

    /**
     * @dev Check how many tokens the given address minted
     */
    function numberMinted(address minter) external view returns(uint256) {
        return _numberMinted(minter);
    }

    // internal functions

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

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

    // owner functions

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

        uint256 totalQuantity = 0;

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

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

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

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

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

    /**
     * @dev Burn/reduce the max supply (onlyOwner)
     */
    function burnSupply(uint256 newMaxSupply) external onlyOwner {
        if( newMaxSupply <= 0 ) revert InvalidMaxSupply();
        if( newMaxSupply >= maxSupply ) revert HigherMaxSupplyNotAllowed();
        if( newMaxSupply < totalSupply() ) revert CantReduceCurrentSupply();
        
        maxSupply = newMaxSupply;
    }

    /**
     * @dev Withdraw all funds (onlyOwner)
     */
    function withdraw() external onlyOwner {
        uint256 amount70 = address(this).balance / 100 * 70;
        uint256 amount8 = address(this).balance / 100 * 8;
        uint256 amount2 = address(this).balance / 100 * 2;
        uint256 amount10 = address(this).balance / 100 * 10;

        _team1.transfer(amount70);
        _team2.transfer(amount8);
        _team3.transfer(amount2);
        _team4.transfer(amount10);
        _team5.transfer(amount10);
    }

}

File 2 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 3 of 7: ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "./Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

File 4 of 7: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

6101206040523480156200001257600080fd5b5060405162003ddf38038062003ddf8339818101604052810190620000389190620005e5565b6040518060400160405280600c81526020017f426f6e6669726520436c756200000000000000000000000000000000000000008152506040518060400160405280600381526020017f42464300000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bc929190620003e7565b508060039080519060200190620000d5929190620003e7565b50620000e66200031460201b60201c565b60008190555050506200010e620001026200031960201b60201c565b6200032160201b60201c565b83600b8190555081600a90805190602001906200012d929190620003e7565b5082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806000600581106200018657620001856200080e565b5b602002015173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505080600160058110620001d857620001d76200080e565b5b602002015173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b81525050806002600581106200022a57620002296200080e565b5b602002015173ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b81525050806003600581106200027c576200027b6200080e565b5b602002015173ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff1660601b8152505080600460058110620002ce57620002cd6200080e565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166101008173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050505050620008ca565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003f59062000773565b90600052602060002090601f01602090048101928262000419576000855562000465565b82601f106200043457805160ff191683800117855562000465565b8280016001018555821562000465579182015b828111156200046457825182559160200191906001019062000447565b5b50905062000474919062000478565b5090565b5b808211156200049357600081600090555060010162000479565b5090565b6000620004ae620004a884620006a0565b62000677565b90508082856020860282011115620004cb57620004ca62000871565b5b60005b85811015620004ff5781620004e4888262000554565b845260208401935060208301925050600181019050620004ce565b5050509392505050565b6000620005206200051a84620006c9565b62000677565b9050828152602081018484840111156200053f576200053e62000876565b5b6200054c8482856200073d565b509392505050565b600081519050620005658162000896565b92915050565b600082601f8301126200058357620005826200086c565b5b60056200059284828562000497565b91505092915050565b600082601f830112620005b357620005b26200086c565b5b8151620005c584826020860162000509565b91505092915050565b600081519050620005df81620008b0565b92915050565b600080600080610100858703121562000603576200060262000880565b5b60006200061387828801620005ce565b9450506020620006268782880162000554565b935050604085015167ffffffffffffffff8111156200064a57620006496200087b565b5b62000658878288016200059b565b92505060606200066b878288016200056b565b91505092959194509250565b60006200068362000696565b9050620006918282620007a9565b919050565b6000604051905090565b600067ffffffffffffffff821115620006be57620006bd6200083d565b5b602082029050919050565b600067ffffffffffffffff821115620006e757620006e66200083d565b5b620006f28262000885565b9050602081019050919050565b60006200070c8262000713565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200075d57808201518184015260208101905062000740565b838111156200076d576000848401525b50505050565b600060028204905060018216806200078c57607f821691505b60208210811415620007a357620007a2620007df565b5b50919050565b620007b48262000885565b810181811067ffffffffffffffff82111715620007d657620007d56200083d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620008a181620006ff565b8114620008ad57600080fd5b50565b620008bb8162000733565b8114620008c757600080fd5b50565b60805160601c60a05160601c60c05160601c60e05160601c6101005160601c6134c16200091e6000396000610f0701526000610ea001526000610e3901526000610dd201526000610d6b01526134c16000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb0114610549578063dc33e68114610574578063e985e9c5146105b1578063f2fde38b146105ee57610181565b8063b88d4fde146104ba578063c87b56dd146104e3578063d595c3311461052057610181565b806370a08231146103cb57806370f93ede14610408578063715018a6146104245780638da5cb5b1461043b57806395d89b4114610466578063a22cb4651461049157610181565b806323b872dd1161013e57806355f804b31161011857806355f804b3146103115780636352211e1461033a57806367243482146103775780636c0360eb146103a057610181565b806323b872dd146102a85780633ccfd60b146102d157806342842e0e146102e857610181565b806301ffc9a714610186578063046dc166146101c357806306fdde03146101ec578063081812fc14610217578063095ea7b31461025457806318160ddd1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906128c7565b610617565b6040516101ba9190612cfe565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190612683565b6106a9565b005b3480156101f857600080fd5b5061020161075c565b60405161020e9190612d5e565b60405180910390f35b34801561022357600080fd5b5061023e600480360381019061023991906129de565b6107ee565b60405161024b9190612c97565b60405180910390f35b34801561026057600080fd5b5061027b60048036038101906102769190612806565b61086d565b005b34801561028957600080fd5b506102926109b1565b60405161029f9190612e20565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906126f0565b6109c8565b005b3480156102dd57600080fd5b506102e6610ced565b005b3480156102f457600080fd5b5061030f600480360381019061030a91906126f0565b610f72565b005b34801561031d57600080fd5b5061033860048036038101906103339190612995565b610f92565b005b34801561034657600080fd5b50610361600480360381019061035c91906129de565b610fb4565b60405161036e9190612c97565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190612846565b610fc6565b005b3480156103ac57600080fd5b506103b56110d9565b6040516103c29190612d5e565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190612683565b611167565b6040516103ff9190612e20565b60405180910390f35b610422600480360381019061041d9190612921565b611220565b005b34801561043057600080fd5b50610439611351565b005b34801561044757600080fd5b50610450611365565b60405161045d9190612c97565b60405180910390f35b34801561047257600080fd5b5061047b61138f565b6040516104889190612d5e565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b391906127c6565b611421565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190612743565b61152c565b005b3480156104ef57600080fd5b5061050a600480360381019061050591906129de565b61159f565b6040516105179190612d5e565b60405180910390f35b34801561052c57600080fd5b50610547600480360381019061054291906129de565b61163e565b005b34801561055557600080fd5b5061055e611706565b60405161056b9190612e20565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190612683565b61170c565b6040516105a89190612e20565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d391906126b0565b61171e565b6040516105e59190612cfe565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190612683565b6117b2565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6106b1611836565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610718576040517f746ef87300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606002805461076b906130b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610797906130b3565b80156107e45780601f106107b9576101008083540402835291602001916107e4565b820191906000526020600020905b8154815290600101906020018083116107c757829003601f168201915b5050505050905090565b60006107f9826118b4565b61082f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087882610fb4565b90508073ffffffffffffffffffffffffffffffffffffffff16610899611913565b73ffffffffffffffffffffffffffffffffffffffff16146108fc576108c5816108c0611913565b61171e565b6108fb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109bb61191b565b6001546000540303905090565b60006109d382611920565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a3a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a46846119ee565b91509150610a5c8187610a57611913565b611a15565b610aa857610a7186610a6c611913565b61171e565b610aa7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b0f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b1c8686866001611a59565b8015610b2757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bf585610bd1888887611a5f565b7c020000000000000000000000000000000000000000000000000000000017611a87565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c7d576000600185019050600060046000838152602001908152602001600020541415610c7b576000548114610c7a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ce58686866001611ab2565b505050505050565b610cf5611836565b60006046606447610d069190612f5b565b610d109190612f8c565b905060006008606447610d239190612f5b565b610d2d9190612f8c565b905060006002606447610d409190612f5b565b610d4a9190612f8c565b90506000600a606447610d5d9190612f5b565b610d679190612f8c565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050158015610dcf573d6000803e3d6000fd5b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015610e36573d6000803e3d6000fd5b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610e9d573d6000803e3d6000fd5b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f04573d6000803e3d6000fd5b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f6b573d6000803e3d6000fd5b5050505050565b610f8d8383836040518060200160405280600081525061152c565b505050565b610f9a611836565b80600a9080519060200190610fb0929190612395565b5050565b6000610fbf82611920565b9050919050565b610fce611836565b6000805b8383905081101561101757838382818110610ff057610fef613253565b5b90506020020135826110029190612f05565b9150808061100f90613116565b915050610fd2565b50600b54816110246109b1565b61102e9190612f05565b1115611066576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b858590508110156110d1576110be86868381811061108a57611089613253565b5b905060200201602081019061109f9190612683565b8585848181106110b2576110b1613253565b5b90506020020135611ab8565b80806110c990613116565b915050611069565b505050505050565b600a80546110e6906130b3565b80601f0160208091040260200160405190810160405280929190818152602001828054611112906130b3565b801561115f5780601f106111345761010080835404028352916020019161115f565b820191906000526020600020905b81548152906001019060200180831161114257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111cf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61127033348387878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611c75565b6112a6576040517fc1606c2f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54826112b26109b1565b6112bc9190612f05565b11156112f4576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80826112ff33611d1b565b6113099190612f05565b1115611341576040517fd58a411000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61134b3383611ab8565b50505050565b611359611836565b6113636000611d72565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461139e906130b3565b80601f01602080910402602001604051908101604052809291908181526020018280546113ca906130b3565b80156114175780601f106113ec57610100808354040283529160200191611417565b820191906000526020600020905b8154815290600101906020018083116113fa57829003601f168201915b5050505050905090565b806007600061142e611913565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114db611913565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115209190612cfe565b60405180910390a35050565b6115378484846109c8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115995761156284848484611e38565b611598576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115aa826118b4565b6115e0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115ea611f98565b905060008151141561160b5760405180602001604052806000815250611636565b806116158461202a565b604051602001611626929190612c4d565b6040516020818303038152906040525b915050919050565b611646611836565b60008111611680576040517f19bcc14c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b5481106116bb576040517fccf5b9e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116c36109b1565b8110156116fc576040517faa9ff3de00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b8190555050565b600b5481565b600061171782611d1b565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117ba611836565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190612dc0565b60405180910390fd5b61183381611d72565b50565b61183e61207a565b73ffffffffffffffffffffffffffffffffffffffff1661185c611365565b73ffffffffffffffffffffffffffffffffffffffff16146118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a990612e00565b60405180910390fd5b565b6000816118bf61191b565b111580156118ce575060005482105b801561190c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061192f61191b565b116119b7576000548110156119b65760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156119b4575b60008114156119aa57600460008360019003935083815260200190815260200160002054905061197f565b80925050506119e9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a76868684612082565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000805490506000821415611af9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b066000848385611a59565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b7d83611b6e6000866000611a5f565b611b778561208b565b17611a87565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611c1e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611be3565b506000821415611c5a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611c706000848385611ab2565b505050565b600080858585604051602001611c8d93929190612c10565b604051602081830303815290604052805190602001209050611cc083611cb28361209b565b6120cb90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e5e611913565b8786866040518563ffffffff1660e01b8152600401611e809493929190612cb2565b602060405180830381600087803b158015611e9a57600080fd5b505af1925050508015611ecb57506040513d601f19601f82011682018060405250810190611ec891906128f4565b60015b611f45573d8060008114611efb576040519150601f19603f3d011682016040523d82523d6000602084013e611f00565b606091505b50600081511415611f3d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611fa7906130b3565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd3906130b3565b80156120205780601f10611ff557610100808354040283529160200191612020565b820191906000526020600020905b81548152906001019060200180831161200357829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561206657600183039250600a81066030018353600a810490508061206157612066565b61203b565b508181036020830392508083525050919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b6000816040516020016120ae9190612c71565b604051602081830303815290604052805190602001209050919050565b60008060006120da85856120f2565b915091506120e781612144565b819250505092915050565b6000806041835114156121345760008060006020860151925060408601519150606086015160001a9050612128878285856122b2565b9450945050505061213d565b60006002915091505b9250929050565b60006004811115612158576121576131f5565b5b81600481111561216b5761216a6131f5565b5b1415612176576122af565b6001600481111561218a576121896131f5565b5b81600481111561219d5761219c6131f5565b5b14156121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d590612d80565b60405180910390fd5b600260048111156121f2576121f16131f5565b5b816004811115612205576122046131f5565b5b1415612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d90612da0565b60405180910390fd5b6003600481111561225a576122596131f5565b5b81600481111561226d5761226c6131f5565b5b14156122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a590612de0565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156122ed57600060039150915061238c565b6000600187878787604051600081526020016040526040516123129493929190612d19565b6020604051602081039080840390855afa158015612334573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123835760006001925092505061238c565b80600092509250505b94509492505050565b8280546123a1906130b3565b90600052602060002090601f0160209004810192826123c3576000855561240a565b82601f106123dc57805160ff191683800117855561240a565b8280016001018555821561240a579182015b828111156124095782518255916020019190600101906123ee565b5b509050612417919061241b565b5090565b5b8082111561243457600081600090555060010161241c565b5090565b600061244b61244684612e60565b612e3b565b905082815260208101848484011115612467576124666132c0565b5b612472848285613071565b509392505050565b600061248d61248884612e91565b612e3b565b9050828152602081018484840111156124a9576124a86132c0565b5b6124b4848285613071565b509392505050565b6000813590506124cb8161342f565b92915050565b60008083601f8401126124e7576124e66132b6565b5b8235905067ffffffffffffffff811115612504576125036132b1565b5b6020830191508360208202830111156125205761251f6132bb565b5b9250929050565b60008083601f84011261253d5761253c6132b6565b5b8235905067ffffffffffffffff81111561255a576125596132b1565b5b602083019150836020820283011115612576576125756132bb565b5b9250929050565b60008135905061258c81613446565b92915050565b6000813590506125a18161345d565b92915050565b6000815190506125b68161345d565b92915050565b60008083601f8401126125d2576125d16132b6565b5b8235905067ffffffffffffffff8111156125ef576125ee6132b1565b5b60208301915083600182028301111561260b5761260a6132bb565b5b9250929050565b600082601f830112612627576126266132b6565b5b8135612637848260208601612438565b91505092915050565b600082601f830112612655576126546132b6565b5b813561266584826020860161247a565b91505092915050565b60008135905061267d81613474565b92915050565b600060208284031215612699576126986132ca565b5b60006126a7848285016124bc565b91505092915050565b600080604083850312156126c7576126c66132ca565b5b60006126d5858286016124bc565b92505060206126e6858286016124bc565b9150509250929050565b600080600060608486031215612709576127086132ca565b5b6000612717868287016124bc565b9350506020612728868287016124bc565b92505060406127398682870161266e565b9150509250925092565b6000806000806080858703121561275d5761275c6132ca565b5b600061276b878288016124bc565b945050602061277c878288016124bc565b935050604061278d8782880161266e565b925050606085013567ffffffffffffffff8111156127ae576127ad6132c5565b5b6127ba87828801612612565b91505092959194509250565b600080604083850312156127dd576127dc6132ca565b5b60006127eb858286016124bc565b92505060206127fc8582860161257d565b9150509250929050565b6000806040838503121561281d5761281c6132ca565b5b600061282b858286016124bc565b925050602061283c8582860161266e565b9150509250929050565b600080600080604085870312156128605761285f6132ca565b5b600085013567ffffffffffffffff81111561287e5761287d6132c5565b5b61288a878288016124d1565b9450945050602085013567ffffffffffffffff8111156128ad576128ac6132c5565b5b6128b987828801612527565b925092505092959194509250565b6000602082840312156128dd576128dc6132ca565b5b60006128eb84828501612592565b91505092915050565b60006020828403121561290a576129096132ca565b5b6000612918848285016125a7565b91505092915050565b6000806000806060858703121561293b5761293a6132ca565b5b600085013567ffffffffffffffff811115612959576129586132c5565b5b612965878288016125bc565b945094505060206129788782880161266e565b92505060406129898782880161266e565b91505092959194509250565b6000602082840312156129ab576129aa6132ca565b5b600082013567ffffffffffffffff8111156129c9576129c86132c5565b5b6129d584828501612640565b91505092915050565b6000602082840312156129f4576129f36132ca565b5b6000612a028482850161266e565b91505092915050565b612a1481612fe6565b82525050565b612a2b612a2682612fe6565b61315f565b82525050565b612a3a81612ff8565b82525050565b612a4981613004565b82525050565b612a60612a5b82613004565b613171565b82525050565b6000612a7182612ec2565b612a7b8185612ed8565b9350612a8b818560208601613080565b612a94816132cf565b840191505092915050565b6000612aaa82612ecd565b612ab48185612ee9565b9350612ac4818560208601613080565b612acd816132cf565b840191505092915050565b6000612ae382612ecd565b612aed8185612efa565b9350612afd818560208601613080565b80840191505092915050565b6000612b16601883612ee9565b9150612b21826132ed565b602082019050919050565b6000612b39601f83612ee9565b9150612b4482613316565b602082019050919050565b6000612b5c601c83612efa565b9150612b678261333f565b601c82019050919050565b6000612b7f602683612ee9565b9150612b8a82613368565b604082019050919050565b6000612ba2602283612ee9565b9150612bad826133b7565b604082019050919050565b6000612bc5602083612ee9565b9150612bd082613406565b602082019050919050565b612be48161305a565b82525050565b612bfb612bf68261305a565b61318d565b82525050565b612c0a81613064565b82525050565b6000612c1c8286612a1a565b601482019150612c2c8285612bea565b602082019150612c3c8284612bea565b602082019150819050949350505050565b6000612c598285612ad8565b9150612c658284612ad8565b91508190509392505050565b6000612c7c82612b4f565b9150612c888284612a4f565b60208201915081905092915050565b6000602082019050612cac6000830184612a0b565b92915050565b6000608082019050612cc76000830187612a0b565b612cd46020830186612a0b565b612ce16040830185612bdb565b8181036060830152612cf38184612a66565b905095945050505050565b6000602082019050612d136000830184612a31565b92915050565b6000608082019050612d2e6000830187612a40565b612d3b6020830186612c01565b612d486040830185612a40565b612d556060830184612a40565b95945050505050565b60006020820190508181036000830152612d788184612a9f565b905092915050565b60006020820190508181036000830152612d9981612b09565b9050919050565b60006020820190508181036000830152612db981612b2c565b9050919050565b60006020820190508181036000830152612dd981612b72565b9050919050565b60006020820190508181036000830152612df981612b95565b9050919050565b60006020820190508181036000830152612e1981612bb8565b9050919050565b6000602082019050612e356000830184612bdb565b92915050565b6000612e45612e56565b9050612e5182826130e5565b919050565b6000604051905090565b600067ffffffffffffffff821115612e7b57612e7a613282565b5b612e84826132cf565b9050602081019050919050565b600067ffffffffffffffff821115612eac57612eab613282565b5b612eb5826132cf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f108261305a565b9150612f1b8361305a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5057612f4f613197565b5b828201905092915050565b6000612f668261305a565b9150612f718361305a565b925082612f8157612f806131c6565b5b828204905092915050565b6000612f978261305a565b9150612fa28361305a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fdb57612fda613197565b5b828202905092915050565b6000612ff18261303a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561309e578082015181840152602081019050613083565b838111156130ad576000848401525b50505050565b600060028204905060018216806130cb57607f821691505b602082108114156130df576130de613224565b5b50919050565b6130ee826132cf565b810181811067ffffffffffffffff8211171561310d5761310c613282565b5b80604052505050565b60006131218261305a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561315457613153613197565b5b600182019050919050565b600061316a8261317b565b9050919050565b6000819050919050565b6000613186826132e0565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61343881612fe6565b811461344357600080fd5b50565b61344f81612ff8565b811461345a57600080fd5b50565b6134668161300e565b811461347157600080fd5b50565b61347d8161305a565b811461348857600080fd5b5056fea2646970667358221220ca028fe3b58162a6e3edcfd2c0122671b7686fe20d8150079841181bfbf3e0f264736f6c6343000807003300000000000000000000000000000000000000000000000000000000000022b80000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000e7a368ba3226c8709e40dc41acfee79d2e850daa000000000000000000000000012d8e2ce2716b260718abe39062a76be15570b3000000000000000000000000d1f7d9375fca816d6abcf878d14ddcdbdb93026d0000000000000000000000009840aecdce9a75711942922357eb70ec44df015f0000000000000000000000002442681bc71e307183100a96232eda66f05c01a3000000000000000000000000000000000000000000000000000000000000003a68747470733a2f2f626f6e666972652d6d696e74696e672d76616c69646174696f6e2e6865726f6b756170702e636f6d2f6d657461646174612f000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb0114610549578063dc33e68114610574578063e985e9c5146105b1578063f2fde38b146105ee57610181565b8063b88d4fde146104ba578063c87b56dd146104e3578063d595c3311461052057610181565b806370a08231146103cb57806370f93ede14610408578063715018a6146104245780638da5cb5b1461043b57806395d89b4114610466578063a22cb4651461049157610181565b806323b872dd1161013e57806355f804b31161011857806355f804b3146103115780636352211e1461033a57806367243482146103775780636c0360eb146103a057610181565b806323b872dd146102a85780633ccfd60b146102d157806342842e0e146102e857610181565b806301ffc9a714610186578063046dc166146101c357806306fdde03146101ec578063081812fc14610217578063095ea7b31461025457806318160ddd1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906128c7565b610617565b6040516101ba9190612cfe565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190612683565b6106a9565b005b3480156101f857600080fd5b5061020161075c565b60405161020e9190612d5e565b60405180910390f35b34801561022357600080fd5b5061023e600480360381019061023991906129de565b6107ee565b60405161024b9190612c97565b60405180910390f35b34801561026057600080fd5b5061027b60048036038101906102769190612806565b61086d565b005b34801561028957600080fd5b506102926109b1565b60405161029f9190612e20565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906126f0565b6109c8565b005b3480156102dd57600080fd5b506102e6610ced565b005b3480156102f457600080fd5b5061030f600480360381019061030a91906126f0565b610f72565b005b34801561031d57600080fd5b5061033860048036038101906103339190612995565b610f92565b005b34801561034657600080fd5b50610361600480360381019061035c91906129de565b610fb4565b60405161036e9190612c97565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190612846565b610fc6565b005b3480156103ac57600080fd5b506103b56110d9565b6040516103c29190612d5e565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190612683565b611167565b6040516103ff9190612e20565b60405180910390f35b610422600480360381019061041d9190612921565b611220565b005b34801561043057600080fd5b50610439611351565b005b34801561044757600080fd5b50610450611365565b60405161045d9190612c97565b60405180910390f35b34801561047257600080fd5b5061047b61138f565b6040516104889190612d5e565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b391906127c6565b611421565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190612743565b61152c565b005b3480156104ef57600080fd5b5061050a600480360381019061050591906129de565b61159f565b6040516105179190612d5e565b60405180910390f35b34801561052c57600080fd5b50610547600480360381019061054291906129de565b61163e565b005b34801561055557600080fd5b5061055e611706565b60405161056b9190612e20565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190612683565b61170c565b6040516105a89190612e20565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d391906126b0565b61171e565b6040516105e59190612cfe565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190612683565b6117b2565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6106b1611836565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610718576040517f746ef87300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606002805461076b906130b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610797906130b3565b80156107e45780601f106107b9576101008083540402835291602001916107e4565b820191906000526020600020905b8154815290600101906020018083116107c757829003601f168201915b5050505050905090565b60006107f9826118b4565b61082f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087882610fb4565b90508073ffffffffffffffffffffffffffffffffffffffff16610899611913565b73ffffffffffffffffffffffffffffffffffffffff16146108fc576108c5816108c0611913565b61171e565b6108fb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109bb61191b565b6001546000540303905090565b60006109d382611920565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a3a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a46846119ee565b91509150610a5c8187610a57611913565b611a15565b610aa857610a7186610a6c611913565b61171e565b610aa7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b0f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b1c8686866001611a59565b8015610b2757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bf585610bd1888887611a5f565b7c020000000000000000000000000000000000000000000000000000000017611a87565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c7d576000600185019050600060046000838152602001908152602001600020541415610c7b576000548114610c7a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ce58686866001611ab2565b505050505050565b610cf5611836565b60006046606447610d069190612f5b565b610d109190612f8c565b905060006008606447610d239190612f5b565b610d2d9190612f8c565b905060006002606447610d409190612f5b565b610d4a9190612f8c565b90506000600a606447610d5d9190612f5b565b610d679190612f8c565b90507f000000000000000000000000e7a368ba3226c8709e40dc41acfee79d2e850daa73ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050158015610dcf573d6000803e3d6000fd5b507f000000000000000000000000012d8e2ce2716b260718abe39062a76be15570b373ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015610e36573d6000803e3d6000fd5b507f000000000000000000000000d1f7d9375fca816d6abcf878d14ddcdbdb93026d73ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610e9d573d6000803e3d6000fd5b507f0000000000000000000000009840aecdce9a75711942922357eb70ec44df015f73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f04573d6000803e3d6000fd5b507f0000000000000000000000002442681bc71e307183100a96232eda66f05c01a373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f6b573d6000803e3d6000fd5b5050505050565b610f8d8383836040518060200160405280600081525061152c565b505050565b610f9a611836565b80600a9080519060200190610fb0929190612395565b5050565b6000610fbf82611920565b9050919050565b610fce611836565b6000805b8383905081101561101757838382818110610ff057610fef613253565b5b90506020020135826110029190612f05565b9150808061100f90613116565b915050610fd2565b50600b54816110246109b1565b61102e9190612f05565b1115611066576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b858590508110156110d1576110be86868381811061108a57611089613253565b5b905060200201602081019061109f9190612683565b8585848181106110b2576110b1613253565b5b90506020020135611ab8565b80806110c990613116565b915050611069565b505050505050565b600a80546110e6906130b3565b80601f0160208091040260200160405190810160405280929190818152602001828054611112906130b3565b801561115f5780601f106111345761010080835404028352916020019161115f565b820191906000526020600020905b81548152906001019060200180831161114257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111cf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61127033348387878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611c75565b6112a6576040517fc1606c2f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54826112b26109b1565b6112bc9190612f05565b11156112f4576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80826112ff33611d1b565b6113099190612f05565b1115611341576040517fd58a411000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61134b3383611ab8565b50505050565b611359611836565b6113636000611d72565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461139e906130b3565b80601f01602080910402602001604051908101604052809291908181526020018280546113ca906130b3565b80156114175780601f106113ec57610100808354040283529160200191611417565b820191906000526020600020905b8154815290600101906020018083116113fa57829003601f168201915b5050505050905090565b806007600061142e611913565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114db611913565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115209190612cfe565b60405180910390a35050565b6115378484846109c8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115995761156284848484611e38565b611598576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115aa826118b4565b6115e0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115ea611f98565b905060008151141561160b5760405180602001604052806000815250611636565b806116158461202a565b604051602001611626929190612c4d565b6040516020818303038152906040525b915050919050565b611646611836565b60008111611680576040517f19bcc14c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b5481106116bb576040517fccf5b9e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116c36109b1565b8110156116fc576040517faa9ff3de00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b8190555050565b600b5481565b600061171782611d1b565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117ba611836565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190612dc0565b60405180910390fd5b61183381611d72565b50565b61183e61207a565b73ffffffffffffffffffffffffffffffffffffffff1661185c611365565b73ffffffffffffffffffffffffffffffffffffffff16146118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a990612e00565b60405180910390fd5b565b6000816118bf61191b565b111580156118ce575060005482105b801561190c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061192f61191b565b116119b7576000548110156119b65760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156119b4575b60008114156119aa57600460008360019003935083815260200190815260200160002054905061197f565b80925050506119e9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a76868684612082565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000805490506000821415611af9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b066000848385611a59565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b7d83611b6e6000866000611a5f565b611b778561208b565b17611a87565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611c1e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611be3565b506000821415611c5a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611c706000848385611ab2565b505050565b600080858585604051602001611c8d93929190612c10565b604051602081830303815290604052805190602001209050611cc083611cb28361209b565b6120cb90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e5e611913565b8786866040518563ffffffff1660e01b8152600401611e809493929190612cb2565b602060405180830381600087803b158015611e9a57600080fd5b505af1925050508015611ecb57506040513d601f19601f82011682018060405250810190611ec891906128f4565b60015b611f45573d8060008114611efb576040519150601f19603f3d011682016040523d82523d6000602084013e611f00565b606091505b50600081511415611f3d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611fa7906130b3565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd3906130b3565b80156120205780601f10611ff557610100808354040283529160200191612020565b820191906000526020600020905b81548152906001019060200180831161200357829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561206657600183039250600a81066030018353600a810490508061206157612066565b61203b565b508181036020830392508083525050919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b6000816040516020016120ae9190612c71565b604051602081830303815290604052805190602001209050919050565b60008060006120da85856120f2565b915091506120e781612144565b819250505092915050565b6000806041835114156121345760008060006020860151925060408601519150606086015160001a9050612128878285856122b2565b9450945050505061213d565b60006002915091505b9250929050565b60006004811115612158576121576131f5565b5b81600481111561216b5761216a6131f5565b5b1415612176576122af565b6001600481111561218a576121896131f5565b5b81600481111561219d5761219c6131f5565b5b14156121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d590612d80565b60405180910390fd5b600260048111156121f2576121f16131f5565b5b816004811115612205576122046131f5565b5b1415612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d90612da0565b60405180910390fd5b6003600481111561225a576122596131f5565b5b81600481111561226d5761226c6131f5565b5b14156122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a590612de0565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156122ed57600060039150915061238c565b6000600187878787604051600081526020016040526040516123129493929190612d19565b6020604051602081039080840390855afa158015612334573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123835760006001925092505061238c565b80600092509250505b94509492505050565b8280546123a1906130b3565b90600052602060002090601f0160209004810192826123c3576000855561240a565b82601f106123dc57805160ff191683800117855561240a565b8280016001018555821561240a579182015b828111156124095782518255916020019190600101906123ee565b5b509050612417919061241b565b5090565b5b8082111561243457600081600090555060010161241c565b5090565b600061244b61244684612e60565b612e3b565b905082815260208101848484011115612467576124666132c0565b5b612472848285613071565b509392505050565b600061248d61248884612e91565b612e3b565b9050828152602081018484840111156124a9576124a86132c0565b5b6124b4848285613071565b509392505050565b6000813590506124cb8161342f565b92915050565b60008083601f8401126124e7576124e66132b6565b5b8235905067ffffffffffffffff811115612504576125036132b1565b5b6020830191508360208202830111156125205761251f6132bb565b5b9250929050565b60008083601f84011261253d5761253c6132b6565b5b8235905067ffffffffffffffff81111561255a576125596132b1565b5b602083019150836020820283011115612576576125756132bb565b5b9250929050565b60008135905061258c81613446565b92915050565b6000813590506125a18161345d565b92915050565b6000815190506125b68161345d565b92915050565b60008083601f8401126125d2576125d16132b6565b5b8235905067ffffffffffffffff8111156125ef576125ee6132b1565b5b60208301915083600182028301111561260b5761260a6132bb565b5b9250929050565b600082601f830112612627576126266132b6565b5b8135612637848260208601612438565b91505092915050565b600082601f830112612655576126546132b6565b5b813561266584826020860161247a565b91505092915050565b60008135905061267d81613474565b92915050565b600060208284031215612699576126986132ca565b5b60006126a7848285016124bc565b91505092915050565b600080604083850312156126c7576126c66132ca565b5b60006126d5858286016124bc565b92505060206126e6858286016124bc565b9150509250929050565b600080600060608486031215612709576127086132ca565b5b6000612717868287016124bc565b9350506020612728868287016124bc565b92505060406127398682870161266e565b9150509250925092565b6000806000806080858703121561275d5761275c6132ca565b5b600061276b878288016124bc565b945050602061277c878288016124bc565b935050604061278d8782880161266e565b925050606085013567ffffffffffffffff8111156127ae576127ad6132c5565b5b6127ba87828801612612565b91505092959194509250565b600080604083850312156127dd576127dc6132ca565b5b60006127eb858286016124bc565b92505060206127fc8582860161257d565b9150509250929050565b6000806040838503121561281d5761281c6132ca565b5b600061282b858286016124bc565b925050602061283c8582860161266e565b9150509250929050565b600080600080604085870312156128605761285f6132ca565b5b600085013567ffffffffffffffff81111561287e5761287d6132c5565b5b61288a878288016124d1565b9450945050602085013567ffffffffffffffff8111156128ad576128ac6132c5565b5b6128b987828801612527565b925092505092959194509250565b6000602082840312156128dd576128dc6132ca565b5b60006128eb84828501612592565b91505092915050565b60006020828403121561290a576129096132ca565b5b6000612918848285016125a7565b91505092915050565b6000806000806060858703121561293b5761293a6132ca565b5b600085013567ffffffffffffffff811115612959576129586132c5565b5b612965878288016125bc565b945094505060206129788782880161266e565b92505060406129898782880161266e565b91505092959194509250565b6000602082840312156129ab576129aa6132ca565b5b600082013567ffffffffffffffff8111156129c9576129c86132c5565b5b6129d584828501612640565b91505092915050565b6000602082840312156129f4576129f36132ca565b5b6000612a028482850161266e565b91505092915050565b612a1481612fe6565b82525050565b612a2b612a2682612fe6565b61315f565b82525050565b612a3a81612ff8565b82525050565b612a4981613004565b82525050565b612a60612a5b82613004565b613171565b82525050565b6000612a7182612ec2565b612a7b8185612ed8565b9350612a8b818560208601613080565b612a94816132cf565b840191505092915050565b6000612aaa82612ecd565b612ab48185612ee9565b9350612ac4818560208601613080565b612acd816132cf565b840191505092915050565b6000612ae382612ecd565b612aed8185612efa565b9350612afd818560208601613080565b80840191505092915050565b6000612b16601883612ee9565b9150612b21826132ed565b602082019050919050565b6000612b39601f83612ee9565b9150612b4482613316565b602082019050919050565b6000612b5c601c83612efa565b9150612b678261333f565b601c82019050919050565b6000612b7f602683612ee9565b9150612b8a82613368565b604082019050919050565b6000612ba2602283612ee9565b9150612bad826133b7565b604082019050919050565b6000612bc5602083612ee9565b9150612bd082613406565b602082019050919050565b612be48161305a565b82525050565b612bfb612bf68261305a565b61318d565b82525050565b612c0a81613064565b82525050565b6000612c1c8286612a1a565b601482019150612c2c8285612bea565b602082019150612c3c8284612bea565b602082019150819050949350505050565b6000612c598285612ad8565b9150612c658284612ad8565b91508190509392505050565b6000612c7c82612b4f565b9150612c888284612a4f565b60208201915081905092915050565b6000602082019050612cac6000830184612a0b565b92915050565b6000608082019050612cc76000830187612a0b565b612cd46020830186612a0b565b612ce16040830185612bdb565b8181036060830152612cf38184612a66565b905095945050505050565b6000602082019050612d136000830184612a31565b92915050565b6000608082019050612d2e6000830187612a40565b612d3b6020830186612c01565b612d486040830185612a40565b612d556060830184612a40565b95945050505050565b60006020820190508181036000830152612d788184612a9f565b905092915050565b60006020820190508181036000830152612d9981612b09565b9050919050565b60006020820190508181036000830152612db981612b2c565b9050919050565b60006020820190508181036000830152612dd981612b72565b9050919050565b60006020820190508181036000830152612df981612b95565b9050919050565b60006020820190508181036000830152612e1981612bb8565b9050919050565b6000602082019050612e356000830184612bdb565b92915050565b6000612e45612e56565b9050612e5182826130e5565b919050565b6000604051905090565b600067ffffffffffffffff821115612e7b57612e7a613282565b5b612e84826132cf565b9050602081019050919050565b600067ffffffffffffffff821115612eac57612eab613282565b5b612eb5826132cf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f108261305a565b9150612f1b8361305a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5057612f4f613197565b5b828201905092915050565b6000612f668261305a565b9150612f718361305a565b925082612f8157612f806131c6565b5b828204905092915050565b6000612f978261305a565b9150612fa28361305a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fdb57612fda613197565b5b828202905092915050565b6000612ff18261303a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561309e578082015181840152602081019050613083565b838111156130ad576000848401525b50505050565b600060028204905060018216806130cb57607f821691505b602082108114156130df576130de613224565b5b50919050565b6130ee826132cf565b810181811067ffffffffffffffff8211171561310d5761310c613282565b5b80604052505050565b60006131218261305a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561315457613153613197565b5b600182019050919050565b600061316a8261317b565b9050919050565b6000819050919050565b6000613186826132e0565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61343881612fe6565b811461344357600080fd5b50565b61344f81612ff8565b811461345a57600080fd5b50565b6134668161300e565b811461347157600080fd5b50565b61347d8161305a565b811461348857600080fd5b5056fea2646970667358221220ca028fe3b58162a6e3edcfd2c0122671b7686fe20d8150079841181bfbf3e0f264736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000022b80000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000e7a368ba3226c8709e40dc41acfee79d2e850daa000000000000000000000000012d8e2ce2716b260718abe39062a76be15570b3000000000000000000000000d1f7d9375fca816d6abcf878d14ddcdbdb93026d0000000000000000000000009840aecdce9a75711942922357eb70ec44df015f0000000000000000000000002442681bc71e307183100a96232eda66f05c01a3000000000000000000000000000000000000000000000000000000000000003a68747470733a2f2f626f6e666972652d6d696e74696e672d76616c69646174696f6e2e6865726f6b756170702e636f6d2f6d657461646174612f000000000000

-----Decoded View---------------
Arg [0] : newMaxSupply (uint256): 8888
Arg [1] : newSignerAddress (address): 0x6B2341bf6d8E7f914a1aFEe9fBDC7449f875f61f
Arg [2] : newBaseURI (string): https://bonfire-minting-validation.herokuapp.com/metadata/
Arg [3] : teamAddresses (address[5]): 0xE7a368BA3226C8709e40DC41AcFee79D2e850dAa,0x012D8E2cE2716B260718abE39062A76be15570B3,0xD1F7d9375FCA816D6ABcf878D14ddcDBDB93026D,0x9840aECDcE9A75711942922357EB70eC44DF015F,0x2442681bc71E307183100A96232EDA66F05c01A3

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000022b8
Arg [1] : 0000000000000000000000006b2341bf6d8e7f914a1afee9fbdc7449f875f61f
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000e7a368ba3226c8709e40dc41acfee79d2e850daa
Arg [4] : 000000000000000000000000012d8e2ce2716b260718abe39062a76be15570b3
Arg [5] : 000000000000000000000000d1f7d9375fca816d6abcf878d14ddcdbdb93026d
Arg [6] : 0000000000000000000000009840aecdce9a75711942922357eb70ec44df015f
Arg [7] : 0000000000000000000000002442681bc71e307183100a96232eda66f05c01a3
Arg [8] : 000000000000000000000000000000000000000000000000000000000000003a
Arg [9] : 68747470733a2f2f626f6e666972652d6d696e74696e672d76616c6964617469
Arg [10] : 6f6e2e6865726f6b756170702e636f6d2f6d657461646174612f000000000000


Deployed Bytecode Sourcemap

362:4068:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9112:630:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3130:196:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9996:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16309:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15769:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5851:317;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19852:2756;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3967:460:0;;;;;;;;;;;;;:::i;:::-;;22699:179:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3404:102:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11348:150:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2593:447:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;707:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7002:230:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1425:409:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1824:101:5;;;;;;;;;;;;;:::i;:::-;;1194:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10165:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16850:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23459:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10368:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3579:323:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;734:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1915:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17231:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9112:630:3;9197:4;9530:10;9515:25;;:11;:25;;;;:101;;;;9606:10;9591:25;;:11;:25;;;;9515:101;:177;;;;9682:10;9667:25;;:11;:25;;;;9515:177;9496:196;;9112:630;;;:::o;3130:196:0:-;1087:13:5;:11;:13::i;:::-;3243:1:0::1;3215:30;;:16;:30;;;3211:65;;;3255:21;;;;;;;;;;;;;;3211:65;3303:16;3286:14;;:33;;;;;;;;;;;;;;;;;;3130:196:::0;:::o;9996:98:3:-;10050:13;10082:5;10075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9996:98;:::o;16309:214::-;16385:7;16409:16;16417:7;16409;:16::i;:::-;16404:64;;16434:34;;;;;;;;;;;;;;16404:64;16486:15;:24;16502:7;16486:24;;;;;;;;;;;:30;;;;;;;;;;;;16479:37;;16309:214;;;:::o;15769:390::-;15849:13;15865:16;15873:7;15865;:16::i;:::-;15849:32;;15919:5;15896:28;;:19;:17;:19::i;:::-;:28;;;15892:172;;15943:44;15960:5;15967:19;:17;:19::i;:::-;15943:16;:44::i;:::-;15938:126;;16014:35;;;;;;;;;;;;;;15938:126;15892:172;16107:2;16074:15;:24;16090:7;16074:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16144:7;16140:2;16124:28;;16133:5;16124:28;;;;;;;;;;;;15839:320;15769:390;;:::o;5851:317::-;5912:7;6136:15;:13;:15::i;:::-;6121:12;;6105:13;;:28;:46;6098:53;;5851:317;:::o;19852:2756::-;19981:27;20011;20030:7;20011:18;:27::i;:::-;19981:57;;20094:4;20053:45;;20069:19;20053:45;;;20049:86;;20107:28;;;;;;;;;;;;;;20049:86;20147:27;20176:23;20203:35;20230:7;20203:26;:35::i;:::-;20146:92;;;;20335:68;20360:15;20377:4;20383:19;:17;:19::i;:::-;20335:24;:68::i;:::-;20330:179;;20422:43;20439:4;20445:19;:17;:19::i;:::-;20422:16;:43::i;:::-;20417:92;;20474:35;;;;;;;;;;;;;;20417:92;20330:179;20538:1;20524:16;;:2;:16;;;20520:52;;;20549:23;;;;;;;;;;;;;;20520:52;20583:43;20605:4;20611:2;20615:7;20624:1;20583:21;:43::i;:::-;20715:15;20712:157;;;20853:1;20832:19;20825:30;20712:157;21241:18;:24;21260:4;21241:24;;;;;;;;;;;;;;;;21239:26;;;;;;;;;;;;21309:18;:22;21328:2;21309:22;;;;;;;;;;;;;;;;21307:24;;;;;;;;;;;21624:143;21660:2;21708:45;21723:4;21729:2;21733:19;21708:14;:45::i;:::-;2349:8;21680:73;21624:18;:143::i;:::-;21595:17;:26;21613:7;21595:26;;;;;;;;;;;:172;;;;21935:1;2349:8;21884:19;:47;:52;21880:617;;;21956:19;21988:1;21978:7;:11;21956:33;;22143:1;22109:17;:30;22127:11;22109:30;;;;;;;;;;;;:35;22105:378;;;22245:13;;22230:11;:28;22226:239;;22423:19;22390:17;:30;22408:11;22390:30;;;;;;;;;;;:52;;;;22226:239;22105:378;21938:559;21880:617;22541:7;22537:2;22522:27;;22531:4;22522:27;;;;;;;;;;;;22559:42;22580:4;22586:2;22590:7;22599:1;22559:20;:42::i;:::-;19971:2637;;;19852:2756;;;:::o;3967:460:0:-;1087:13:5;:11;:13::i;:::-;4016:16:0::1;4065:2;4059:3;4035:21;:27;;;;:::i;:::-;:32;;;;:::i;:::-;4016:51;;4077:15;4125:1;4119:3;4095:21;:27;;;;:::i;:::-;:31;;;;:::i;:::-;4077:49;;4136:15;4184:1;4178:3;4154:21;:27;;;;:::i;:::-;:31;;;;:::i;:::-;4136:49;;4195:16;4244:2;4238:3;4214:21;:27;;;;:::i;:::-;:32;;;;:::i;:::-;4195:51;;4257:6;:15;;:25;4273:8;4257:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4292:6;:15;;:24;4308:7;4292:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4326:6;:15;;:24;4342:7;4326:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4360:6;:15;;:25;4376:8;4360:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4395:6;:15;;:25;4411:8;4395:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4006:421;;;;3967:460::o:0;22699:179:3:-;22832:39;22849:4;22855:2;22859:7;22832:39;;;;;;;;;;;;:16;:39::i;:::-;22699:179;;;:::o;3404:102:0:-;1087:13:5;:11;:13::i;:::-;3489:10:0::1;3479:7;:20;;;;;;;;;;;;:::i;:::-;;3404:102:::0;:::o;11348:150:3:-;11420:7;11462:27;11481:7;11462:18;:27::i;:::-;11439:52;;11348:150;;;:::o;2593:447:0:-;1087:13:5;:11;:13::i;:::-;2702:21:0::1;2743:9:::0;2738:104:::1;2762:10;;:17;;2758:1;:21;2738:104;;;2818:10;;2829:1;2818:13;;;;;;;:::i;:::-;;;;;;;;2801:30;;;;;:::i;:::-;;;2781:3;;;;;:::i;:::-;;;;2738:104;;;;2888:9;;2872:13;2856;:11;:13::i;:::-;:29;;;;:::i;:::-;:41;2852:64;;;2907:9;;;;;;;;;;;;;;2852:64;2932:9;2927:107;2951:9;;:16;;2947:1;:20;2927:107;;;2989:34;2995:9;;3005:1;2995:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3009:10;;3020:1;3009:13;;;;;;;:::i;:::-;;;;;;;;2989:5;:34::i;:::-;2969:3;;;;;:::i;:::-;;;;2927:107;;;;2691:349;2593:447:::0;;;;:::o;707:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7002:230:3:-;7074:7;7114:1;7097:19;;:5;:19;;;7093:60;;;7125:28;;;;;;;;;;;;;;7093:60;1317:13;7170:18;:25;7189:5;7170:25;;;;;;;;;;;;;;;;:55;7163:62;;7002:230;;;:::o;1425:409:0:-;1536:57;1547:10;1559:9;1570:11;1583:9;;1536:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;:57::i;:::-;1531:92;;1603:20;;;;;;;;;;;;;;1531:92;1664:9;;1653:8;1637:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;1633:59;;;1683:9;;;;;;;;;;;;;;1633:59;1745:11;1734:8;1706:25;1720:10;1706:13;:25::i;:::-;:36;;;;:::i;:::-;:50;1702:87;;;1766:23;;;;;;;;;;;;;;1702:87;1800:27;1806:10;1818:8;1800:5;:27::i;:::-;1425:409;;;;:::o;1824:101:5:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;1194:85::-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;10165:102:3:-;10221:13;10253:7;10246:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10165:102;:::o;16850:231::-;16996:8;16944:18;:39;16963:19;:17;:19::i;:::-;16944:39;;;;;;;;;;;;;;;:49;16984:8;16944:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17055:8;17019:55;;17034:19;:17;:19::i;:::-;17019:55;;;17065:8;17019:55;;;;;;:::i;:::-;;;;;;;;16850:231;;:::o;23459:388::-;23620:31;23633:4;23639:2;23643:7;23620:12;:31::i;:::-;23683:1;23665:2;:14;;;:19;23661:180;;23703:56;23734:4;23740:2;23744:7;23753:5;23703:30;:56::i;:::-;23698:143;;23786:40;;;;;;;;;;;;;;23698:143;23661:180;23459:388;;;;:::o;10368:313::-;10441:13;10471:16;10479:7;10471;:16::i;:::-;10466:59;;10496:29;;;;;;;;;;;;;;10466:59;10536:21;10560:10;:8;:10::i;:::-;10536:34;;10612:1;10593:7;10587:21;:26;;:87;;;;;;;;;;;;;;;;;10640:7;10649:18;10659:7;10649:9;:18::i;:::-;10623:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10587:87;10580:94;;;10368:313;;;:::o;3579:323:0:-;1087:13:5;:11;:13::i;:::-;3670:1:0::1;3654:12;:17;3650:49;;3681:18;;;;;;;;;;;;;;3650:49;3729:9;;3713:12;:25;3709:66;;3748:27;;;;;;;;;;;;;;3709:66;3804:13;:11;:13::i;:::-;3789:12;:28;3785:67;;;3827:25;;;;;;;;;;;;;;3785:67;3883:12;3871:9;:24;;;;3579:323:::0;:::o;734:24::-;;;;:::o;1915:114::-;1975:7;2001:21;2015:6;2001:13;:21::i;:::-;1994:28;;1915:114;;;:::o;17231:162:3:-;17328:4;17351:18;:25;17370:5;17351:25;;;;;;;;;;;;;;;:35;17377:8;17351:35;;;;;;;;;;;;;;;;;;;;;;;;;17344:42;;17231:162;;;;:::o;2074:198:5:-;1087:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;;;2154:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;1352:130::-;1426:12;:10;:12::i;:::-;1415:23;;:7;:5;:7::i;:::-;:23;;;1407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:130::o;17642:277:3:-;17707:4;17761:7;17742:15;:13;:15::i;:::-;:26;;:65;;;;;17794:13;;17784:7;:23;17742:65;:151;;;;;17892:1;2075:8;17844:17;:26;17862:7;17844:26;;;;;;;;;;;;:44;:49;17742:151;17723:170;;17642:277;;;:::o;39119:103::-;39179:7;39205:10;39198:17;;39119:103;:::o;5383:90::-;5439:7;5383:90;:::o;12472:1249::-;12539:7;12558:12;12573:7;12558:22;;12638:4;12619:15;:13;:15::i;:::-;:23;12615:1042;;12671:13;;12664:4;:20;12660:997;;;12708:14;12725:17;:23;12743:4;12725:23;;;;;;;;;;;;12708:40;;12840:1;2075:8;12812:6;:24;:29;12808:831;;;13467:111;13484:1;13474:6;:11;13467:111;;;13526:17;:25;13544:6;;;;;;;13526:25;;;;;;;;;;;;13517:34;;13467:111;;;13610:6;13603:13;;;;;;12808:831;12686:971;12660:997;12615:1042;13683:31;;;;;;;;;;;;;;12472:1249;;;;:::o;18777:474::-;18876:27;18905:23;18944:38;18985:15;:24;19001:7;18985:24;;;;;;;;;;;18944:65;;19159:18;19136:41;;19215:19;19209:26;19190:45;;19122:123;18777:474;;;:::o;18023:646::-;18168:11;18330:16;18323:5;18319:28;18310:37;;18488:16;18477:9;18473:32;18460:45;;18636:15;18625:9;18622:30;18614:5;18603:9;18600:20;18597:56;18587:66;;18023:646;;;;;:::o;24491:154::-;;;;;:::o;38446:304::-;38577:7;38596:16;2470:3;38622:19;:41;;38596:68;;2470:3;38689:31;38700:4;38706:2;38710:9;38689:10;:31::i;:::-;38681:40;;:62;;38674:69;;;38446:304;;;;;:::o;14254:443::-;14334:14;14499:16;14492:5;14488:28;14479:37;;14674:5;14660:11;14635:23;14631:41;14628:52;14621:5;14618:63;14608:73;;14254:443;;;;:::o;25292:153::-;;;;;:::o;27016:2659::-;27088:20;27111:13;;27088:36;;27150:1;27138:8;:13;27134:44;;;27160:18;;;;;;;;;;;;;;27134:44;27189:61;27219:1;27223:2;27227:12;27241:8;27189:21;:61::i;:::-;27722:1;1452:2;27692:1;:26;;27691:32;27679:8;:45;27653:18;:22;27672:2;27653:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;27994:136;28030:2;28083:33;28106:1;28110:2;28114:1;28083:14;:33::i;:::-;28050:30;28071:8;28050:20;:30::i;:::-;:66;27994:18;:136::i;:::-;27960:17;:31;27978:12;27960:31;;;;;;;;;;;:170;;;;28145:16;28175:11;28204:8;28189:12;:23;28175:37;;28717:16;28713:2;28709:25;28697:37;;29081:12;29042:8;29002:1;28941:25;28883:1;28823;28797:328;29202:1;29188:12;29184:20;29143:339;29242:3;29233:7;29230:16;29143:339;;29456:7;29446:8;29443:1;29416:25;29413:1;29410;29405:59;29294:1;29285:7;29281:15;29270:26;;29143:339;;;29147:75;29525:1;29513:8;:13;29509:45;;;29535:19;;;;;;;;;;;;;;29509:45;29585:3;29569:13;:19;;;;27433:2166;;29608:60;29637:1;29641:2;29645:12;29659:8;29608:20;:60::i;:::-;27078:2597;27016:2659;;:::o;2062:316:0:-;2184:4;2200:19;2249:6;2257:9;2268:11;2232:48;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2222:59;;;;;;2200:81;;2316:55;2361:9;2316:36;:11;:34;:36::i;:::-;:44;;:55;;;;:::i;:::-;2298:73;;:14;;;;;;;;;;;:73;;;2291:80;;;2062:316;;;;;;:::o;7309:176:3:-;7370:7;1317:13;1452:2;7397:18;:25;7416:5;7397:25;;;;;;;;;;;;;;;;:50;;7396:82;7389:89;;7309:176;;;:::o;2426:187:5:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;25873:697:3:-;26031:4;26076:2;26051:45;;;26097:19;:17;:19::i;:::-;26118:4;26124:7;26133:5;26051:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26047:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26346:1;26329:6;:13;:18;26325:229;;;26374:40;;;;;;;;;;;;;;26325:229;26514:6;26508:13;26499:6;26495:2;26491:15;26484:38;26047:517;26217:54;;;26207:64;;;:6;:64;;;;26200:71;;;25873:697;;;;;;:::o;2384:106:0:-;2444:13;2476:7;2469:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2384:106;:::o;39319:1549:3:-;39384:17;39804:4;39797;39791:11;39787:22;39780:29;;39894:3;39888:4;39881:17;39997:3;40231:5;40213:419;40239:1;40213:419;;;40278:1;40273:3;40269:11;40262:18;;40446:2;40440:4;40436:13;40432:2;40428:22;40423:3;40415:36;40538:2;40532:4;40528:13;40520:21;;40603:4;40593:25;;40611:5;;40593:25;40213:419;;;40217:21;40669:3;40664;40660:13;40782:4;40777:3;40773:14;40766:21;;40845:6;40840:3;40833:19;39422:1440;;39319:1549;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;38157:143:3:-;38290:6;38157:143;;;;;:::o;14794:318::-;14864:14;15093:1;15083:8;15080:15;15054:24;15050:46;15040:56;;14794:318;;;:::o;7255:265:2:-;7324:7;7507:4;7454:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;7444:69;;;;;;7437:76;;7255:265;;;:::o;3660:227::-;3738:7;3758:17;3777:18;3799:27;3810:4;3816:9;3799:10;:27::i;:::-;3757:69;;;;3836:18;3848:5;3836:11;:18::i;:::-;3871:9;3864:16;;;;3660:227;;;;:::o;2144:730::-;2225:7;2234:12;2282:2;2262:9;:16;:22;2258:610;;;2300:9;2323;2346:7;2598:4;2587:9;2583:20;2577:27;2572:32;;2647:4;2636:9;2632:20;2626:27;2621:32;;2704:4;2693:9;2689:20;2683:27;2680:1;2675:36;2670:41;;2745:25;2756:4;2762:1;2765;2768;2745:10;:25::i;:::-;2738:32;;;;;;;;;2258:610;2817:1;2821:35;2801:56;;;;2144:730;;;;;;:::o;569:511::-;646:20;637:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;633:441;;;682:7;;633:441;742:29;733:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;729:345;;;787:34;;;;;;;;;;:::i;:::-;;;;;;;;729:345;851:35;842:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;838:236;;;902:41;;;;;;;;;;:::i;:::-;;;;;;;;838:236;973:30;964:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;960:114;;;1019:44;;;;;;;;;;:::i;:::-;;;;;;;;960:114;569:511;;:::o;5068:1494::-;5194:7;5203:12;6118:66;6113:1;6105:10;;:79;6101:161;;;6216:1;6220:30;6200:51;;;;;;6101:161;6356:14;6373:24;6383:4;6389:1;6392;6395;6373:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6356:41;;6429:1;6411:20;;:6;:20;;;6407:101;;;6463:1;6467:29;6447:50;;;;;;;6407:101;6526:6;6534:20;6518:37;;;;;5068:1494;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:7:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:137::-;2352:5;2390:6;2377:20;2368:29;;2406:32;2432:5;2406:32;:::i;:::-;2307:137;;;;:::o;2450:141::-;2506:5;2537:6;2531:13;2522:22;;2553:32;2579:5;2553:32;:::i;:::-;2450:141;;;;:::o;2610:552::-;2667:8;2677:6;2727:3;2720:4;2712:6;2708:17;2704:27;2694:122;;2735:79;;:::i;:::-;2694:122;2848:6;2835:20;2825:30;;2878:18;2870:6;2867:30;2864:117;;;2900:79;;:::i;:::-;2864:117;3014:4;3006:6;3002:17;2990:29;;3068:3;3060:4;3052:6;3048:17;3038:8;3034:32;3031:41;3028:128;;;3075:79;;:::i;:::-;3028:128;2610:552;;;;;:::o;3181:338::-;3236:5;3285:3;3278:4;3270:6;3266:17;3262:27;3252:122;;3293:79;;:::i;:::-;3252:122;3410:6;3397:20;3435:78;3509:3;3501:6;3494:4;3486:6;3482:17;3435:78;:::i;:::-;3426:87;;3242:277;3181:338;;;;:::o;3539:340::-;3595:5;3644:3;3637:4;3629:6;3625:17;3621:27;3611:122;;3652:79;;:::i;:::-;3611:122;3769:6;3756:20;3794:79;3869:3;3861:6;3854:4;3846:6;3842:17;3794:79;:::i;:::-;3785:88;;3601:278;3539:340;;;;:::o;3885:139::-;3931:5;3969:6;3956:20;3947:29;;3985:33;4012:5;3985:33;:::i;:::-;3885:139;;;;:::o;4030:329::-;4089:6;4138:2;4126:9;4117:7;4113:23;4109:32;4106:119;;;4144:79;;:::i;:::-;4106:119;4264:1;4289:53;4334:7;4325:6;4314:9;4310:22;4289:53;:::i;:::-;4279:63;;4235:117;4030:329;;;;:::o;4365:474::-;4433:6;4441;4490:2;4478:9;4469:7;4465:23;4461:32;4458:119;;;4496:79;;:::i;:::-;4458:119;4616:1;4641:53;4686:7;4677:6;4666:9;4662:22;4641:53;:::i;:::-;4631:63;;4587:117;4743:2;4769:53;4814:7;4805:6;4794:9;4790:22;4769:53;:::i;:::-;4759:63;;4714:118;4365:474;;;;;:::o;4845:619::-;4922:6;4930;4938;4987:2;4975:9;4966:7;4962:23;4958:32;4955:119;;;4993:79;;:::i;:::-;4955:119;5113:1;5138:53;5183:7;5174:6;5163:9;5159:22;5138:53;:::i;:::-;5128:63;;5084:117;5240:2;5266:53;5311:7;5302:6;5291:9;5287:22;5266:53;:::i;:::-;5256:63;;5211:118;5368:2;5394:53;5439:7;5430:6;5419:9;5415:22;5394:53;:::i;:::-;5384:63;;5339:118;4845:619;;;;;:::o;5470:943::-;5565:6;5573;5581;5589;5638:3;5626:9;5617:7;5613:23;5609:33;5606:120;;;5645:79;;:::i;:::-;5606:120;5765:1;5790:53;5835:7;5826:6;5815:9;5811:22;5790:53;:::i;:::-;5780:63;;5736:117;5892:2;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5863:118;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6176:2;6165:9;6161:18;6148:32;6207:18;6199:6;6196:30;6193:117;;;6229:79;;:::i;:::-;6193:117;6334:62;6388:7;6379:6;6368:9;6364:22;6334:62;:::i;:::-;6324:72;;6119:287;5470:943;;;;;;;:::o;6419:468::-;6484:6;6492;6541:2;6529:9;6520:7;6516:23;6512:32;6509:119;;;6547:79;;:::i;:::-;6509:119;6667:1;6692:53;6737:7;6728:6;6717:9;6713:22;6692:53;:::i;:::-;6682:63;;6638:117;6794:2;6820:50;6862:7;6853:6;6842:9;6838:22;6820:50;:::i;:::-;6810:60;;6765:115;6419:468;;;;;:::o;6893:474::-;6961:6;6969;7018:2;7006:9;6997:7;6993:23;6989:32;6986:119;;;7024:79;;:::i;:::-;6986:119;7144:1;7169:53;7214:7;7205:6;7194:9;7190:22;7169:53;:::i;:::-;7159:63;;7115:117;7271:2;7297:53;7342:7;7333:6;7322:9;7318:22;7297:53;:::i;:::-;7287:63;;7242:118;6893:474;;;;;:::o;7373:934::-;7495:6;7503;7511;7519;7568:2;7556:9;7547:7;7543:23;7539:32;7536:119;;;7574:79;;:::i;:::-;7536:119;7722:1;7711:9;7707:17;7694:31;7752:18;7744:6;7741:30;7738:117;;;7774:79;;:::i;:::-;7738:117;7887:80;7959:7;7950:6;7939:9;7935:22;7887:80;:::i;:::-;7869:98;;;;7665:312;8044:2;8033:9;8029:18;8016:32;8075:18;8067:6;8064:30;8061:117;;;8097:79;;:::i;:::-;8061:117;8210:80;8282:7;8273:6;8262:9;8258:22;8210:80;:::i;:::-;8192:98;;;;7987:313;7373:934;;;;;;;:::o;8313:327::-;8371:6;8420:2;8408:9;8399:7;8395:23;8391:32;8388:119;;;8426:79;;:::i;:::-;8388:119;8546:1;8571:52;8615:7;8606:6;8595:9;8591:22;8571:52;:::i;:::-;8561:62;;8517:116;8313:327;;;;:::o;8646:349::-;8715:6;8764:2;8752:9;8743:7;8739:23;8735:32;8732:119;;;8770:79;;:::i;:::-;8732:119;8890:1;8915:63;8970:7;8961:6;8950:9;8946:22;8915:63;:::i;:::-;8905:73;;8861:127;8646:349;;;;:::o;9001:817::-;9089:6;9097;9105;9113;9162:2;9150:9;9141:7;9137:23;9133:32;9130:119;;;9168:79;;:::i;:::-;9130:119;9316:1;9305:9;9301:17;9288:31;9346:18;9338:6;9335:30;9332:117;;;9368:79;;:::i;:::-;9332:117;9481:64;9537:7;9528:6;9517:9;9513:22;9481:64;:::i;:::-;9463:82;;;;9259:296;9594:2;9620:53;9665:7;9656:6;9645:9;9641:22;9620:53;:::i;:::-;9610:63;;9565:118;9722:2;9748:53;9793:7;9784:6;9773:9;9769:22;9748:53;:::i;:::-;9738:63;;9693:118;9001:817;;;;;;;:::o;9824:509::-;9893:6;9942:2;9930:9;9921:7;9917:23;9913:32;9910:119;;;9948:79;;:::i;:::-;9910:119;10096:1;10085:9;10081:17;10068:31;10126:18;10118:6;10115:30;10112:117;;;10148:79;;:::i;:::-;10112:117;10253:63;10308:7;10299:6;10288:9;10284:22;10253:63;:::i;:::-;10243:73;;10039:287;9824:509;;;;:::o;10339:329::-;10398:6;10447:2;10435:9;10426:7;10422:23;10418:32;10415:119;;;10453:79;;:::i;:::-;10415:119;10573:1;10598:53;10643:7;10634:6;10623:9;10619:22;10598:53;:::i;:::-;10588:63;;10544:117;10339:329;;;;:::o;10674:118::-;10761:24;10779:5;10761:24;:::i;:::-;10756:3;10749:37;10674:118;;:::o;10798:157::-;10903:45;10923:24;10941:5;10923:24;:::i;:::-;10903:45;:::i;:::-;10898:3;10891:58;10798:157;;:::o;10961:109::-;11042:21;11057:5;11042:21;:::i;:::-;11037:3;11030:34;10961:109;;:::o;11076:118::-;11163:24;11181:5;11163:24;:::i;:::-;11158:3;11151:37;11076:118;;:::o;11200:157::-;11305:45;11325:24;11343:5;11325:24;:::i;:::-;11305:45;:::i;:::-;11300:3;11293:58;11200:157;;:::o;11363:360::-;11449:3;11477:38;11509:5;11477:38;:::i;:::-;11531:70;11594:6;11589:3;11531:70;:::i;:::-;11524:77;;11610:52;11655:6;11650:3;11643:4;11636:5;11632:16;11610:52;:::i;:::-;11687:29;11709:6;11687:29;:::i;:::-;11682:3;11678:39;11671:46;;11453:270;11363:360;;;;:::o;11729:364::-;11817:3;11845:39;11878:5;11845:39;:::i;:::-;11900:71;11964:6;11959:3;11900:71;:::i;:::-;11893:78;;11980:52;12025:6;12020:3;12013:4;12006:5;12002:16;11980:52;:::i;:::-;12057:29;12079:6;12057:29;:::i;:::-;12052:3;12048:39;12041:46;;11821:272;11729:364;;;;:::o;12099:377::-;12205:3;12233:39;12266:5;12233:39;:::i;:::-;12288:89;12370:6;12365:3;12288:89;:::i;:::-;12281:96;;12386:52;12431:6;12426:3;12419:4;12412:5;12408:16;12386:52;:::i;:::-;12463:6;12458:3;12454:16;12447:23;;12209:267;12099:377;;;;:::o;12482:366::-;12624:3;12645:67;12709:2;12704:3;12645:67;:::i;:::-;12638:74;;12721:93;12810:3;12721:93;:::i;:::-;12839:2;12834:3;12830:12;12823:19;;12482:366;;;:::o;12854:::-;12996:3;13017:67;13081:2;13076:3;13017:67;:::i;:::-;13010:74;;13093:93;13182:3;13093:93;:::i;:::-;13211:2;13206:3;13202:12;13195:19;;12854:366;;;:::o;13226:402::-;13386:3;13407:85;13489:2;13484:3;13407:85;:::i;:::-;13400:92;;13501:93;13590:3;13501:93;:::i;:::-;13619:2;13614:3;13610:12;13603:19;;13226:402;;;:::o;13634:366::-;13776:3;13797:67;13861:2;13856:3;13797:67;:::i;:::-;13790:74;;13873:93;13962:3;13873:93;:::i;:::-;13991:2;13986:3;13982:12;13975:19;;13634:366;;;:::o;14006:::-;14148:3;14169:67;14233:2;14228:3;14169:67;:::i;:::-;14162:74;;14245:93;14334:3;14245:93;:::i;:::-;14363:2;14358:3;14354:12;14347:19;;14006:366;;;:::o;14378:::-;14520:3;14541:67;14605:2;14600:3;14541:67;:::i;:::-;14534:74;;14617:93;14706:3;14617:93;:::i;:::-;14735:2;14730:3;14726:12;14719:19;;14378:366;;;:::o;14750:118::-;14837:24;14855:5;14837:24;:::i;:::-;14832:3;14825:37;14750:118;;:::o;14874:157::-;14979:45;14999:24;15017:5;14999:24;:::i;:::-;14979:45;:::i;:::-;14974:3;14967:58;14874:157;;:::o;15037:112::-;15120:22;15136:5;15120:22;:::i;:::-;15115:3;15108:35;15037:112;;:::o;15155:538::-;15323:3;15338:75;15409:3;15400:6;15338:75;:::i;:::-;15438:2;15433:3;15429:12;15422:19;;15451:75;15522:3;15513:6;15451:75;:::i;:::-;15551:2;15546:3;15542:12;15535:19;;15564:75;15635:3;15626:6;15564:75;:::i;:::-;15664:2;15659:3;15655:12;15648:19;;15684:3;15677:10;;15155:538;;;;;;:::o;15699:435::-;15879:3;15901:95;15992:3;15983:6;15901:95;:::i;:::-;15894:102;;16013:95;16104:3;16095:6;16013:95;:::i;:::-;16006:102;;16125:3;16118:10;;15699:435;;;;;:::o;16140:522::-;16353:3;16375:148;16519:3;16375:148;:::i;:::-;16368:155;;16533:75;16604:3;16595:6;16533:75;:::i;:::-;16633:2;16628:3;16624:12;16617:19;;16653:3;16646:10;;16140:522;;;;:::o;16668:222::-;16761:4;16799:2;16788:9;16784:18;16776:26;;16812:71;16880:1;16869:9;16865:17;16856:6;16812:71;:::i;:::-;16668:222;;;;:::o;16896:640::-;17091:4;17129:3;17118:9;17114:19;17106:27;;17143:71;17211:1;17200:9;17196:17;17187:6;17143:71;:::i;:::-;17224:72;17292:2;17281:9;17277:18;17268:6;17224:72;:::i;:::-;17306;17374:2;17363:9;17359:18;17350:6;17306:72;:::i;:::-;17425:9;17419:4;17415:20;17410:2;17399:9;17395:18;17388:48;17453:76;17524:4;17515:6;17453:76;:::i;:::-;17445:84;;16896:640;;;;;;;:::o;17542:210::-;17629:4;17667:2;17656:9;17652:18;17644:26;;17680:65;17742:1;17731:9;17727:17;17718:6;17680:65;:::i;:::-;17542:210;;;;:::o;17758:545::-;17931:4;17969:3;17958:9;17954:19;17946:27;;17983:71;18051:1;18040:9;18036:17;18027:6;17983:71;:::i;:::-;18064:68;18128:2;18117:9;18113:18;18104:6;18064:68;:::i;:::-;18142:72;18210:2;18199:9;18195:18;18186:6;18142:72;:::i;:::-;18224;18292:2;18281:9;18277:18;18268:6;18224:72;:::i;:::-;17758:545;;;;;;;:::o;18309:313::-;18422:4;18460:2;18449:9;18445:18;18437:26;;18509:9;18503:4;18499:20;18495:1;18484:9;18480:17;18473:47;18537:78;18610:4;18601:6;18537:78;:::i;:::-;18529:86;;18309:313;;;;:::o;18628:419::-;18794:4;18832:2;18821:9;18817:18;18809:26;;18881:9;18875:4;18871:20;18867:1;18856:9;18852:17;18845:47;18909:131;19035:4;18909:131;:::i;:::-;18901:139;;18628:419;;;:::o;19053:::-;19219:4;19257:2;19246:9;19242:18;19234:26;;19306:9;19300:4;19296:20;19292:1;19281:9;19277:17;19270:47;19334:131;19460:4;19334:131;:::i;:::-;19326:139;;19053:419;;;:::o;19478:::-;19644:4;19682:2;19671:9;19667:18;19659:26;;19731:9;19725:4;19721:20;19717:1;19706:9;19702:17;19695:47;19759:131;19885:4;19759:131;:::i;:::-;19751:139;;19478:419;;;:::o;19903:::-;20069:4;20107:2;20096:9;20092:18;20084:26;;20156:9;20150:4;20146:20;20142:1;20131:9;20127:17;20120:47;20184:131;20310:4;20184:131;:::i;:::-;20176:139;;19903:419;;;:::o;20328:::-;20494:4;20532:2;20521:9;20517:18;20509:26;;20581:9;20575:4;20571:20;20567:1;20556:9;20552:17;20545:47;20609:131;20735:4;20609:131;:::i;:::-;20601:139;;20328:419;;;:::o;20753:222::-;20846:4;20884:2;20873:9;20869:18;20861:26;;20897:71;20965:1;20954:9;20950:17;20941:6;20897:71;:::i;:::-;20753:222;;;;:::o;20981:129::-;21015:6;21042:20;;:::i;:::-;21032:30;;21071:33;21099:4;21091:6;21071:33;:::i;:::-;20981:129;;;:::o;21116:75::-;21149:6;21182:2;21176:9;21166:19;;21116:75;:::o;21197:307::-;21258:4;21348:18;21340:6;21337:30;21334:56;;;21370:18;;:::i;:::-;21334:56;21408:29;21430:6;21408:29;:::i;:::-;21400:37;;21492:4;21486;21482:15;21474:23;;21197:307;;;:::o;21510:308::-;21572:4;21662:18;21654:6;21651:30;21648:56;;;21684:18;;:::i;:::-;21648:56;21722:29;21744:6;21722:29;:::i;:::-;21714:37;;21806:4;21800;21796:15;21788:23;;21510:308;;;:::o;21824:98::-;21875:6;21909:5;21903:12;21893:22;;21824:98;;;:::o;21928:99::-;21980:6;22014:5;22008:12;21998:22;;21928:99;;;:::o;22033:168::-;22116:11;22150:6;22145:3;22138:19;22190:4;22185:3;22181:14;22166:29;;22033:168;;;;:::o;22207:169::-;22291:11;22325:6;22320:3;22313:19;22365:4;22360:3;22356:14;22341:29;;22207:169;;;;:::o;22382:148::-;22484:11;22521:3;22506:18;;22382:148;;;;:::o;22536:305::-;22576:3;22595:20;22613:1;22595:20;:::i;:::-;22590:25;;22629:20;22647:1;22629:20;:::i;:::-;22624:25;;22783:1;22715:66;22711:74;22708:1;22705:81;22702:107;;;22789:18;;:::i;:::-;22702:107;22833:1;22830;22826:9;22819:16;;22536:305;;;;:::o;22847:185::-;22887:1;22904:20;22922:1;22904:20;:::i;:::-;22899:25;;22938:20;22956:1;22938:20;:::i;:::-;22933:25;;22977:1;22967:35;;22982:18;;:::i;:::-;22967:35;23024:1;23021;23017:9;23012:14;;22847:185;;;;:::o;23038:348::-;23078:7;23101:20;23119:1;23101:20;:::i;:::-;23096:25;;23135:20;23153:1;23135:20;:::i;:::-;23130:25;;23323:1;23255:66;23251:74;23248:1;23245:81;23240:1;23233:9;23226:17;23222:105;23219:131;;;23330:18;;:::i;:::-;23219:131;23378:1;23375;23371:9;23360:20;;23038:348;;;;:::o;23392:96::-;23429:7;23458:24;23476:5;23458:24;:::i;:::-;23447:35;;23392:96;;;:::o;23494:90::-;23528:7;23571:5;23564:13;23557:21;23546:32;;23494:90;;;:::o;23590:77::-;23627:7;23656:5;23645:16;;23590:77;;;:::o;23673:149::-;23709:7;23749:66;23742:5;23738:78;23727:89;;23673:149;;;:::o;23828:126::-;23865:7;23905:42;23898:5;23894:54;23883:65;;23828:126;;;:::o;23960:77::-;23997:7;24026:5;24015:16;;23960:77;;;:::o;24043:86::-;24078:7;24118:4;24111:5;24107:16;24096:27;;24043:86;;;:::o;24135:154::-;24219:6;24214:3;24209;24196:30;24281:1;24272:6;24267:3;24263:16;24256:27;24135:154;;;:::o;24295:307::-;24363:1;24373:113;24387:6;24384:1;24381:13;24373:113;;;24472:1;24467:3;24463:11;24457:18;24453:1;24448:3;24444:11;24437:39;24409:2;24406:1;24402:10;24397:15;;24373:113;;;24504:6;24501:1;24498:13;24495:101;;;24584:1;24575:6;24570:3;24566:16;24559:27;24495:101;24344:258;24295:307;;;:::o;24608:320::-;24652:6;24689:1;24683:4;24679:12;24669:22;;24736:1;24730:4;24726:12;24757:18;24747:81;;24813:4;24805:6;24801:17;24791:27;;24747:81;24875:2;24867:6;24864:14;24844:18;24841:38;24838:84;;;24894:18;;:::i;:::-;24838:84;24659:269;24608:320;;;:::o;24934:281::-;25017:27;25039:4;25017:27;:::i;:::-;25009:6;25005:40;25147:6;25135:10;25132:22;25111:18;25099:10;25096:34;25093:62;25090:88;;;25158:18;;:::i;:::-;25090:88;25198:10;25194:2;25187:22;24977:238;24934:281;;:::o;25221:233::-;25260:3;25283:24;25301:5;25283:24;:::i;:::-;25274:33;;25329:66;25322:5;25319:77;25316:103;;;25399:18;;:::i;:::-;25316:103;25446:1;25439:5;25435:13;25428:20;;25221:233;;;:::o;25460:100::-;25499:7;25528:26;25548:5;25528:26;:::i;:::-;25517:37;;25460:100;;;:::o;25566:79::-;25605:7;25634:5;25623:16;;25566:79;;;:::o;25651:94::-;25690:7;25719:20;25733:5;25719:20;:::i;:::-;25708:31;;25651:94;;;:::o;25751:79::-;25790:7;25819:5;25808:16;;25751:79;;;:::o;25836:180::-;25884:77;25881:1;25874:88;25981:4;25978:1;25971:15;26005:4;26002:1;25995:15;26022:180;26070:77;26067:1;26060:88;26167:4;26164:1;26157:15;26191:4;26188:1;26181:15;26208:180;26256:77;26253:1;26246:88;26353:4;26350:1;26343:15;26377:4;26374:1;26367:15;26394:180;26442:77;26439:1;26432:88;26539:4;26536:1;26529:15;26563:4;26560:1;26553:15;26580:180;26628:77;26625:1;26618:88;26725:4;26722:1;26715:15;26749:4;26746:1;26739:15;26766:180;26814:77;26811:1;26804:88;26911:4;26908:1;26901:15;26935:4;26932:1;26925:15;26952:117;27061:1;27058;27051:12;27075:117;27184:1;27181;27174:12;27198:117;27307:1;27304;27297:12;27321:117;27430:1;27427;27420:12;27444:117;27553:1;27550;27543:12;27567:117;27676:1;27673;27666:12;27690:102;27731:6;27782:2;27778:7;27773:2;27766:5;27762:14;27758:28;27748:38;;27690:102;;;:::o;27798:94::-;27831:8;27879:5;27875:2;27871:14;27850:35;;27798:94;;;:::o;27898:174::-;28038:26;28034:1;28026:6;28022:14;28015:50;27898:174;:::o;28078:181::-;28218:33;28214:1;28206:6;28202:14;28195:57;28078:181;:::o;28265:214::-;28405:66;28401:1;28393:6;28389:14;28382:90;28265:214;:::o;28485:225::-;28625:34;28621:1;28613:6;28609:14;28602:58;28694:8;28689:2;28681:6;28677:15;28670:33;28485:225;:::o;28716:221::-;28856:34;28852:1;28844:6;28840:14;28833:58;28925:4;28920:2;28912:6;28908:15;28901:29;28716:221;:::o;28943:182::-;29083:34;29079:1;29071:6;29067:14;29060:58;28943:182;:::o;29131:122::-;29204:24;29222:5;29204:24;:::i;:::-;29197:5;29194:35;29184:63;;29243:1;29240;29233:12;29184:63;29131:122;:::o;29259:116::-;29329:21;29344:5;29329:21;:::i;:::-;29322:5;29319:32;29309:60;;29365:1;29362;29355:12;29309:60;29259:116;:::o;29381:120::-;29453:23;29470:5;29453:23;:::i;:::-;29446:5;29443:34;29433:62;;29491:1;29488;29481:12;29433:62;29381:120;:::o;29507:122::-;29580:24;29598:5;29580:24;:::i;:::-;29573:5;29570:35;29560:63;;29619:1;29616;29609:12;29560:63;29507:122;:::o

Swarm Source

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