ETH Price: $2,402.00 (-0.93%)

Token

TheMaskedChildren (TMC)
 

Overview

Max Total Supply

1,000 TMC

Holders

180

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 TMC
0x54Adc7AEF76b889E4f6c3B881Bc88959727F6404
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:
TheMaskedChildren

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 5: TMCContract.sol
pragma solidity ^0.8.14;

import "./ERC721A.sol";
import "./Ownable.sol";

contract TheMaskedChildren is ERC721A, Ownable{

    uint256 public constant MAX_CHILDREN = 1000;
    uint256 public constant PRICE = .00 ether;
    uint256 public constant MAX_PER_TX = 5;
    uint256 public constant MAX_PER_WALLET = 10;

    bool public saleIsActive = false;

    string public baseTokenURI;


    constructor() ERC721A ("TheMaskedChildren", "TMC") {}

    function toggleSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function mint(uint amountToMint) public payable{
        uint256 total = _totalMinted();
        require(msg.sender == tx.origin, "Contract's are not allowed to mint.");
        require(saleIsActive, "Sale is not active.");
        require(amountToMint > 0, "You have to mint at least 1 child.");
        require(amountToMint <= MAX_PER_TX, "Can only mint 5 tokens at a time.");
        require(_numberMinted(msg.sender) + amountToMint <= MAX_PER_WALLET, "This wallet has minted the max tokens allowed.");
        require(amountToMint + total <= MAX_CHILDREN, "The number exceeds the amount of available children to mint.");
        require(total < MAX_CHILDREN, "The sale is complete.");

        _safeMint(msg.sender, amountToMint);
        
    }

    function numberMinted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        require(balance > 0, "No ETH is available to withdraw.");
        payable(msg.sender).transfer(balance);
    }
    

}

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

pragma solidity ^0.8.0;

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

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

File 2 of 5: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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`
    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 => address) private _tokenApprovals;

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
        unchecked {
            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;
                buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
                value /= 10;
            }
            return string(buffer);
        }
    }
}

File 3 of 5: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token 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);
}

File 4 of 5: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":[],"name":"MAX_CHILDREN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","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":"_owner","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526000600860146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280601181526020017f5468654d61736b65644368696c6472656e0000000000000000000000000000008152506040518060400160405280600381526020017f544d4300000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000b1929190620001dc565b508060039080519060200190620000ca929190620001dc565b50620000db6200010960201b60201c565b600081905550505062000103620000f76200010e60201b60201c565b6200011660201b60201c565b620002f0565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ea90620002bb565b90600052602060002090601f0160209004810192826200020e57600085556200025a565b82601f106200022957805160ff19168380011785556200025a565b828001600101855582156200025a579182015b82811115620002595782518255916020019190600101906200023c565b5b5090506200026991906200026d565b5090565b5b80821115620002885760008160009055506001016200026e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d457607f821691505b602082108103620002ea57620002e96200028c565b5b50919050565b61310880620003006000396000f3fe6080604052600436106101b75760003560e01c80638d859f3e116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146105d9578063eb8d244414610616578063f2fde38b14610641578063f43a22dc1461066a576101b7565b8063c87b56dd14610534578063d547cfb714610571578063dc33e6811461059c576101b7565b8063a0712d68116100c6578063a0712d681461049b578063a22cb465146104b7578063b88d4fde146104e0578063c222ff4914610509576101b7565b80638d859f3e1461041a5780638da5cb5b1461044557806395d89b4114610470576101b7565b80633ccfd60b116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec5780637d8966e414610403576101b7565b80633ccfd60b1461030957806342842e0e1461032057806355f804b314610349576101b7565b8063095ea7b311610195578063095ea7b3146102615780630f2cdd6c1461028a57806318160ddd146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906122ef565b610695565b6040516101f09190612337565b60405180910390f35b34801561020557600080fd5b5061020e610727565b60405161021b91906123eb565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612443565b6107b9565b60405161025891906124b1565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906124f8565b610835565b005b34801561029657600080fd5b5061029f6109db565b6040516102ac9190612547565b60405180910390f35b3480156102c157600080fd5b506102ca6109e0565b6040516102d79190612547565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612562565b6109f7565b005b34801561031557600080fd5b5061031e610a07565b005b34801561032c57600080fd5b5061034760048036038101906103429190612562565b610b15565b005b34801561035557600080fd5b50610370600480360381019061036b91906126ea565b610b35565b005b34801561037e57600080fd5b5061039960048036038101906103949190612443565b610bcb565b6040516103a691906124b1565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612733565b610bdd565b6040516103e39190612547565b60405180910390f35b3480156103f857600080fd5b50610401610c95565b005b34801561040f57600080fd5b50610418610d1d565b005b34801561042657600080fd5b5061042f610dc5565b60405161043c9190612547565b60405180910390f35b34801561045157600080fd5b5061045a610dca565b60405161046791906124b1565b60405180910390f35b34801561047c57600080fd5b50610485610df4565b60405161049291906123eb565b60405180910390f35b6104b560048036038101906104b09190612443565b610e86565b005b3480156104c357600080fd5b506104de60048036038101906104d9919061278c565b6110cf565b005b3480156104ec57600080fd5b506105076004803603810190610502919061286d565b611246565b005b34801561051557600080fd5b5061051e6112b9565b60405161052b9190612547565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190612443565b6112bf565b60405161056891906123eb565b60405180910390f35b34801561057d57600080fd5b5061058661135d565b60405161059391906123eb565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612733565b6113eb565b6040516105d09190612547565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906128f0565b6113fd565b60405161060d9190612337565b60405180910390f35b34801561062257600080fd5b5061062b611491565b6040516106389190612337565b60405180910390f35b34801561064d57600080fd5b5061066860048036038101906106639190612733565b6114a4565b005b34801561067657600080fd5b5061067f61159b565b60405161068c9190612547565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107205750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107369061295f565b80601f01602080910402602001604051908101604052809291908181526020018280546107629061295f565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b60006107c4826115a0565b6107fa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610840826115ff565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c66116cb565b73ffffffffffffffffffffffffffffffffffffffff1614610929576108f2816108ed6116cb565b6113fd565b610928576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a81565b60006109ea6116d3565b6001546000540303905090565b610a028383836116d8565b505050565b610a0f611a7f565b73ffffffffffffffffffffffffffffffffffffffff16610a2d610dca565b73ffffffffffffffffffffffffffffffffffffffff1614610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a906129dc565b60405180910390fd5b600047905060008111610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290612a48565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b11573d6000803e3d6000fd5b5050565b610b3083838360405180602001604052806000815250611246565b505050565b610b3d611a7f565b73ffffffffffffffffffffffffffffffffffffffff16610b5b610dca565b73ffffffffffffffffffffffffffffffffffffffff1614610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba8906129dc565b60405180910390fd5b8060099080519060200190610bc79291906121e0565b5050565b6000610bd6826115ff565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c44576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c9d611a7f565b73ffffffffffffffffffffffffffffffffffffffff16610cbb610dca565b73ffffffffffffffffffffffffffffffffffffffff1614610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d08906129dc565b60405180910390fd5b610d1b6000611a87565b565b610d25611a7f565b73ffffffffffffffffffffffffffffffffffffffff16610d43610dca565b73ffffffffffffffffffffffffffffffffffffffff1614610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d90906129dc565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b600081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e039061295f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2f9061295f565b8015610e7c5780601f10610e5157610100808354040283529160200191610e7c565b820191906000526020600020905b815481529060010190602001808311610e5f57829003601f168201915b5050505050905090565b6000610e90611b4d565b90503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790612ada565b60405180910390fd5b600860149054906101000a900460ff16610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690612b46565b60405180910390fd5b60008211610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990612bd8565b60405180910390fd5b6005821115610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90612c6a565b60405180910390fd5b600a82610fe233611b60565b610fec9190612cb9565b111561102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490612d81565b60405180910390fd5b6103e8818361103c9190612cb9565b111561107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490612e13565b60405180910390fd5b6103e881106110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890612e7f565b60405180910390fd5b6110cb3383611bb7565b5050565b6110d76116cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361113b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111486116cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111f56116cb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161123a9190612337565b60405180910390a35050565b6112518484846116d8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112b35761127c84848484611bd5565b6112b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6103e881565b60606112ca826115a0565b611300576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061130a611d25565b9050600081510361132a5760405180602001604052806000815250611355565b8061133484611db7565b604051602001611345929190612edb565b6040516020818303038152906040525b915050919050565b6009805461136a9061295f565b80601f01602080910402602001604051908101604052809291908181526020018280546113969061295f565b80156113e35780601f106113b8576101008083540402835291602001916113e3565b820191906000526020600020905b8154815290600101906020018083116113c657829003601f168201915b505050505081565b60006113f682611b60565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860149054906101000a900460ff1681565b6114ac611a7f565b73ffffffffffffffffffffffffffffffffffffffff166114ca610dca565b73ffffffffffffffffffffffffffffffffffffffff1614611520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611517906129dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158690612f71565b60405180910390fd5b61159881611a87565b50565b600581565b6000816115ab6116d3565b111580156115ba575060005482105b80156115f8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061160e6116d3565b11611694576000548110156116935760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611691575b6000810361168757600460008360019003935083815260200190815260200160002054905061165d565b80925050506116c6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006116e3826115ff565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461174a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661176b6116cb565b73ffffffffffffffffffffffffffffffffffffffff16148061179a5750611799856117946116cb565b6113fd565b5b806117df57506117a86116cb565b73ffffffffffffffffffffffffffffffffffffffff166117c7846107b9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611818576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361187e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61188b8585856001611f0d565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61198886611f13565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611a105760006001840190506000600460008381526020019081526020016000205403611a0e576000548114611a0d578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a788585856001611f1d565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611b576116d3565b60005403905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611bd1828260405180602001604052806000815250611f23565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bfb6116cb565b8786866040518563ffffffff1660e01b8152600401611c1d9493929190612fe6565b6020604051808303816000875af1925050508015611c5957506040513d601f19601f82011682018060405250810190611c569190613047565b60015b611cd2573d8060008114611c89576040519150601f19603f3d011682016040523d82523d6000602084013e611c8e565b606091505b506000815103611cca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611d349061295f565b80601f0160208091040260200160405190810160405280929190818152602001828054611d609061295f565b8015611dad5780601f10611d8257610100808354040283529160200191611dad565b820191906000526020600020905b815481529060010190602001808311611d9057829003601f168201915b5050505050905090565b606060008203611dfe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f08565b600082905060005b60008214611e2d57806001019050600a8281611e2557611e24613074565b5b049150611e06565b60008167ffffffffffffffff811115611e4957611e486125bf565b5b6040519080825280601f01601f191660200182016040528015611e7b5781602001600182028036833780820191505090505b5090505b60008514611f015781600190039150600a8581611e9f57611e9e613074565b5b0660300160f81b818381518110611eb957611eb86130a3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8581611ef957611ef8613074565b5b049450611e7f565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f8f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611fc9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fd66000858386611f0d565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161203b600185146121d6565b901b60a042901b61204b86611f13565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461214f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ff6000878480600101955087611bd5565b612135576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061209057826000541461214a57600080fd5b6121ba565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612150575b8160008190555050506121d06000858386611f1d565b50505050565b6000819050919050565b8280546121ec9061295f565b90600052602060002090601f01602090048101928261220e5760008555612255565b82601f1061222757805160ff1916838001178555612255565b82800160010185558215612255579182015b82811115612254578251825591602001919060010190612239565b5b5090506122629190612266565b5090565b5b8082111561227f576000816000905550600101612267565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122cc81612297565b81146122d757600080fd5b50565b6000813590506122e9816122c3565b92915050565b6000602082840312156123055761230461228d565b5b6000612313848285016122da565b91505092915050565b60008115159050919050565b6123318161231c565b82525050565b600060208201905061234c6000830184612328565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561238c578082015181840152602081019050612371565b8381111561239b576000848401525b50505050565b6000601f19601f8301169050919050565b60006123bd82612352565b6123c7818561235d565b93506123d781856020860161236e565b6123e0816123a1565b840191505092915050565b6000602082019050818103600083015261240581846123b2565b905092915050565b6000819050919050565b6124208161240d565b811461242b57600080fd5b50565b60008135905061243d81612417565b92915050565b6000602082840312156124595761245861228d565b5b60006124678482850161242e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061249b82612470565b9050919050565b6124ab81612490565b82525050565b60006020820190506124c660008301846124a2565b92915050565b6124d581612490565b81146124e057600080fd5b50565b6000813590506124f2816124cc565b92915050565b6000806040838503121561250f5761250e61228d565b5b600061251d858286016124e3565b925050602061252e8582860161242e565b9150509250929050565b6125418161240d565b82525050565b600060208201905061255c6000830184612538565b92915050565b60008060006060848603121561257b5761257a61228d565b5b6000612589868287016124e3565b935050602061259a868287016124e3565b92505060406125ab8682870161242e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125f7826123a1565b810181811067ffffffffffffffff82111715612616576126156125bf565b5b80604052505050565b6000612629612283565b905061263582826125ee565b919050565b600067ffffffffffffffff821115612655576126546125bf565b5b61265e826123a1565b9050602081019050919050565b82818337600083830152505050565b600061268d6126888461263a565b61261f565b9050828152602081018484840111156126a9576126a86125ba565b5b6126b484828561266b565b509392505050565b600082601f8301126126d1576126d06125b5565b5b81356126e184826020860161267a565b91505092915050565b600060208284031215612700576126ff61228d565b5b600082013567ffffffffffffffff81111561271e5761271d612292565b5b61272a848285016126bc565b91505092915050565b6000602082840312156127495761274861228d565b5b6000612757848285016124e3565b91505092915050565b6127698161231c565b811461277457600080fd5b50565b60008135905061278681612760565b92915050565b600080604083850312156127a3576127a261228d565b5b60006127b1858286016124e3565b92505060206127c285828601612777565b9150509250929050565b600067ffffffffffffffff8211156127e7576127e66125bf565b5b6127f0826123a1565b9050602081019050919050565b600061281061280b846127cc565b61261f565b90508281526020810184848401111561282c5761282b6125ba565b5b61283784828561266b565b509392505050565b600082601f830112612854576128536125b5565b5b81356128648482602086016127fd565b91505092915050565b600080600080608085870312156128875761288661228d565b5b6000612895878288016124e3565b94505060206128a6878288016124e3565b93505060406128b78782880161242e565b925050606085013567ffffffffffffffff8111156128d8576128d7612292565b5b6128e48782880161283f565b91505092959194509250565b600080604083850312156129075761290661228d565b5b6000612915858286016124e3565b9250506020612926858286016124e3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061297757607f821691505b60208210810361298a57612989612930565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129c660208361235d565b91506129d182612990565b602082019050919050565b600060208201905081810360008301526129f5816129b9565b9050919050565b7f4e6f2045544820697320617661696c61626c6520746f2077697468647261772e600082015250565b6000612a3260208361235d565b9150612a3d826129fc565b602082019050919050565b60006020820190508181036000830152612a6181612a25565b9050919050565b7f436f6e7472616374277320617265206e6f7420616c6c6f77656420746f206d6960008201527f6e742e0000000000000000000000000000000000000000000000000000000000602082015250565b6000612ac460238361235d565b9150612acf82612a68565b604082019050919050565b60006020820190508181036000830152612af381612ab7565b9050919050565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b6000612b3060138361235d565b9150612b3b82612afa565b602082019050919050565b60006020820190508181036000830152612b5f81612b23565b9050919050565b7f596f75206861766520746f206d696e74206174206c656173742031206368696c60008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bc260228361235d565b9150612bcd82612b66565b604082019050919050565b60006020820190508181036000830152612bf181612bb5565b9050919050565b7f43616e206f6e6c79206d696e74203520746f6b656e7320617420612074696d6560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c5460218361235d565b9150612c5f82612bf8565b604082019050919050565b60006020820190508181036000830152612c8381612c47565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cc48261240d565b9150612ccf8361240d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d0457612d03612c8a565b5b828201905092915050565b7f546869732077616c6c657420686173206d696e74656420746865206d6178207460008201527f6f6b656e7320616c6c6f7765642e000000000000000000000000000000000000602082015250565b6000612d6b602e8361235d565b9150612d7682612d0f565b604082019050919050565b60006020820190508181036000830152612d9a81612d5e565b9050919050565b7f546865206e756d62657220657863656564732074686520616d6f756e74206f6660008201527f20617661696c61626c65206368696c6472656e20746f206d696e742e00000000602082015250565b6000612dfd603c8361235d565b9150612e0882612da1565b604082019050919050565b60006020820190508181036000830152612e2c81612df0565b9050919050565b7f5468652073616c6520697320636f6d706c6574652e0000000000000000000000600082015250565b6000612e6960158361235d565b9150612e7482612e33565b602082019050919050565b60006020820190508181036000830152612e9881612e5c565b9050919050565b600081905092915050565b6000612eb582612352565b612ebf8185612e9f565b9350612ecf81856020860161236e565b80840191505092915050565b6000612ee78285612eaa565b9150612ef38284612eaa565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f5b60268361235d565b9150612f6682612eff565b604082019050919050565b60006020820190508181036000830152612f8a81612f4e565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612fb882612f91565b612fc28185612f9c565b9350612fd281856020860161236e565b612fdb816123a1565b840191505092915050565b6000608082019050612ffb60008301876124a2565b61300860208301866124a2565b6130156040830185612538565b81810360608301526130278184612fad565b905095945050505050565b600081519050613041816122c3565b92915050565b60006020828403121561305d5761305c61228d565b5b600061306b84828501613032565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212200e333ac9c0eb10e5c0b30938503a019f385b729b59d98dd610e0484477af451964736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638d859f3e116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146105d9578063eb8d244414610616578063f2fde38b14610641578063f43a22dc1461066a576101b7565b8063c87b56dd14610534578063d547cfb714610571578063dc33e6811461059c576101b7565b8063a0712d68116100c6578063a0712d681461049b578063a22cb465146104b7578063b88d4fde146104e0578063c222ff4914610509576101b7565b80638d859f3e1461041a5780638da5cb5b1461044557806395d89b4114610470576101b7565b80633ccfd60b116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec5780637d8966e414610403576101b7565b80633ccfd60b1461030957806342842e0e1461032057806355f804b314610349576101b7565b8063095ea7b311610195578063095ea7b3146102615780630f2cdd6c1461028a57806318160ddd146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906122ef565b610695565b6040516101f09190612337565b60405180910390f35b34801561020557600080fd5b5061020e610727565b60405161021b91906123eb565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612443565b6107b9565b60405161025891906124b1565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906124f8565b610835565b005b34801561029657600080fd5b5061029f6109db565b6040516102ac9190612547565b60405180910390f35b3480156102c157600080fd5b506102ca6109e0565b6040516102d79190612547565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612562565b6109f7565b005b34801561031557600080fd5b5061031e610a07565b005b34801561032c57600080fd5b5061034760048036038101906103429190612562565b610b15565b005b34801561035557600080fd5b50610370600480360381019061036b91906126ea565b610b35565b005b34801561037e57600080fd5b5061039960048036038101906103949190612443565b610bcb565b6040516103a691906124b1565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612733565b610bdd565b6040516103e39190612547565b60405180910390f35b3480156103f857600080fd5b50610401610c95565b005b34801561040f57600080fd5b50610418610d1d565b005b34801561042657600080fd5b5061042f610dc5565b60405161043c9190612547565b60405180910390f35b34801561045157600080fd5b5061045a610dca565b60405161046791906124b1565b60405180910390f35b34801561047c57600080fd5b50610485610df4565b60405161049291906123eb565b60405180910390f35b6104b560048036038101906104b09190612443565b610e86565b005b3480156104c357600080fd5b506104de60048036038101906104d9919061278c565b6110cf565b005b3480156104ec57600080fd5b506105076004803603810190610502919061286d565b611246565b005b34801561051557600080fd5b5061051e6112b9565b60405161052b9190612547565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190612443565b6112bf565b60405161056891906123eb565b60405180910390f35b34801561057d57600080fd5b5061058661135d565b60405161059391906123eb565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612733565b6113eb565b6040516105d09190612547565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906128f0565b6113fd565b60405161060d9190612337565b60405180910390f35b34801561062257600080fd5b5061062b611491565b6040516106389190612337565b60405180910390f35b34801561064d57600080fd5b5061066860048036038101906106639190612733565b6114a4565b005b34801561067657600080fd5b5061067f61159b565b60405161068c9190612547565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107205750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107369061295f565b80601f01602080910402602001604051908101604052809291908181526020018280546107629061295f565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b60006107c4826115a0565b6107fa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610840826115ff565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c66116cb565b73ffffffffffffffffffffffffffffffffffffffff1614610929576108f2816108ed6116cb565b6113fd565b610928576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a81565b60006109ea6116d3565b6001546000540303905090565b610a028383836116d8565b505050565b610a0f611a7f565b73ffffffffffffffffffffffffffffffffffffffff16610a2d610dca565b73ffffffffffffffffffffffffffffffffffffffff1614610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a906129dc565b60405180910390fd5b600047905060008111610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290612a48565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b11573d6000803e3d6000fd5b5050565b610b3083838360405180602001604052806000815250611246565b505050565b610b3d611a7f565b73ffffffffffffffffffffffffffffffffffffffff16610b5b610dca565b73ffffffffffffffffffffffffffffffffffffffff1614610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba8906129dc565b60405180910390fd5b8060099080519060200190610bc79291906121e0565b5050565b6000610bd6826115ff565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c44576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c9d611a7f565b73ffffffffffffffffffffffffffffffffffffffff16610cbb610dca565b73ffffffffffffffffffffffffffffffffffffffff1614610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d08906129dc565b60405180910390fd5b610d1b6000611a87565b565b610d25611a7f565b73ffffffffffffffffffffffffffffffffffffffff16610d43610dca565b73ffffffffffffffffffffffffffffffffffffffff1614610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d90906129dc565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b600081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e039061295f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2f9061295f565b8015610e7c5780601f10610e5157610100808354040283529160200191610e7c565b820191906000526020600020905b815481529060010190602001808311610e5f57829003601f168201915b5050505050905090565b6000610e90611b4d565b90503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790612ada565b60405180910390fd5b600860149054906101000a900460ff16610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690612b46565b60405180910390fd5b60008211610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990612bd8565b60405180910390fd5b6005821115610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90612c6a565b60405180910390fd5b600a82610fe233611b60565b610fec9190612cb9565b111561102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490612d81565b60405180910390fd5b6103e8818361103c9190612cb9565b111561107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490612e13565b60405180910390fd5b6103e881106110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890612e7f565b60405180910390fd5b6110cb3383611bb7565b5050565b6110d76116cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361113b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111486116cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111f56116cb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161123a9190612337565b60405180910390a35050565b6112518484846116d8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112b35761127c84848484611bd5565b6112b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6103e881565b60606112ca826115a0565b611300576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061130a611d25565b9050600081510361132a5760405180602001604052806000815250611355565b8061133484611db7565b604051602001611345929190612edb565b6040516020818303038152906040525b915050919050565b6009805461136a9061295f565b80601f01602080910402602001604051908101604052809291908181526020018280546113969061295f565b80156113e35780601f106113b8576101008083540402835291602001916113e3565b820191906000526020600020905b8154815290600101906020018083116113c657829003601f168201915b505050505081565b60006113f682611b60565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860149054906101000a900460ff1681565b6114ac611a7f565b73ffffffffffffffffffffffffffffffffffffffff166114ca610dca565b73ffffffffffffffffffffffffffffffffffffffff1614611520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611517906129dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158690612f71565b60405180910390fd5b61159881611a87565b50565b600581565b6000816115ab6116d3565b111580156115ba575060005482105b80156115f8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061160e6116d3565b11611694576000548110156116935760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611691575b6000810361168757600460008360019003935083815260200190815260200160002054905061165d565b80925050506116c6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006116e3826115ff565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461174a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661176b6116cb565b73ffffffffffffffffffffffffffffffffffffffff16148061179a5750611799856117946116cb565b6113fd565b5b806117df57506117a86116cb565b73ffffffffffffffffffffffffffffffffffffffff166117c7846107b9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611818576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361187e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61188b8585856001611f0d565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61198886611f13565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611a105760006001840190506000600460008381526020019081526020016000205403611a0e576000548114611a0d578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a788585856001611f1d565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611b576116d3565b60005403905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611bd1828260405180602001604052806000815250611f23565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bfb6116cb565b8786866040518563ffffffff1660e01b8152600401611c1d9493929190612fe6565b6020604051808303816000875af1925050508015611c5957506040513d601f19601f82011682018060405250810190611c569190613047565b60015b611cd2573d8060008114611c89576040519150601f19603f3d011682016040523d82523d6000602084013e611c8e565b606091505b506000815103611cca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611d349061295f565b80601f0160208091040260200160405190810160405280929190818152602001828054611d609061295f565b8015611dad5780601f10611d8257610100808354040283529160200191611dad565b820191906000526020600020905b815481529060010190602001808311611d9057829003601f168201915b5050505050905090565b606060008203611dfe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f08565b600082905060005b60008214611e2d57806001019050600a8281611e2557611e24613074565b5b049150611e06565b60008167ffffffffffffffff811115611e4957611e486125bf565b5b6040519080825280601f01601f191660200182016040528015611e7b5781602001600182028036833780820191505090505b5090505b60008514611f015781600190039150600a8581611e9f57611e9e613074565b5b0660300160f81b818381518110611eb957611eb86130a3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8581611ef957611ef8613074565b5b049450611e7f565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f8f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611fc9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fd66000858386611f0d565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161203b600185146121d6565b901b60a042901b61204b86611f13565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461214f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ff6000878480600101955087611bd5565b612135576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061209057826000541461214a57600080fd5b6121ba565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612150575b8160008190555050506121d06000858386611f1d565b50505050565b6000819050919050565b8280546121ec9061295f565b90600052602060002090601f01602090048101928261220e5760008555612255565b82601f1061222757805160ff1916838001178555612255565b82800160010185558215612255579182015b82811115612254578251825591602001919060010190612239565b5b5090506122629190612266565b5090565b5b8082111561227f576000816000905550600101612267565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122cc81612297565b81146122d757600080fd5b50565b6000813590506122e9816122c3565b92915050565b6000602082840312156123055761230461228d565b5b6000612313848285016122da565b91505092915050565b60008115159050919050565b6123318161231c565b82525050565b600060208201905061234c6000830184612328565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561238c578082015181840152602081019050612371565b8381111561239b576000848401525b50505050565b6000601f19601f8301169050919050565b60006123bd82612352565b6123c7818561235d565b93506123d781856020860161236e565b6123e0816123a1565b840191505092915050565b6000602082019050818103600083015261240581846123b2565b905092915050565b6000819050919050565b6124208161240d565b811461242b57600080fd5b50565b60008135905061243d81612417565b92915050565b6000602082840312156124595761245861228d565b5b60006124678482850161242e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061249b82612470565b9050919050565b6124ab81612490565b82525050565b60006020820190506124c660008301846124a2565b92915050565b6124d581612490565b81146124e057600080fd5b50565b6000813590506124f2816124cc565b92915050565b6000806040838503121561250f5761250e61228d565b5b600061251d858286016124e3565b925050602061252e8582860161242e565b9150509250929050565b6125418161240d565b82525050565b600060208201905061255c6000830184612538565b92915050565b60008060006060848603121561257b5761257a61228d565b5b6000612589868287016124e3565b935050602061259a868287016124e3565b92505060406125ab8682870161242e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125f7826123a1565b810181811067ffffffffffffffff82111715612616576126156125bf565b5b80604052505050565b6000612629612283565b905061263582826125ee565b919050565b600067ffffffffffffffff821115612655576126546125bf565b5b61265e826123a1565b9050602081019050919050565b82818337600083830152505050565b600061268d6126888461263a565b61261f565b9050828152602081018484840111156126a9576126a86125ba565b5b6126b484828561266b565b509392505050565b600082601f8301126126d1576126d06125b5565b5b81356126e184826020860161267a565b91505092915050565b600060208284031215612700576126ff61228d565b5b600082013567ffffffffffffffff81111561271e5761271d612292565b5b61272a848285016126bc565b91505092915050565b6000602082840312156127495761274861228d565b5b6000612757848285016124e3565b91505092915050565b6127698161231c565b811461277457600080fd5b50565b60008135905061278681612760565b92915050565b600080604083850312156127a3576127a261228d565b5b60006127b1858286016124e3565b92505060206127c285828601612777565b9150509250929050565b600067ffffffffffffffff8211156127e7576127e66125bf565b5b6127f0826123a1565b9050602081019050919050565b600061281061280b846127cc565b61261f565b90508281526020810184848401111561282c5761282b6125ba565b5b61283784828561266b565b509392505050565b600082601f830112612854576128536125b5565b5b81356128648482602086016127fd565b91505092915050565b600080600080608085870312156128875761288661228d565b5b6000612895878288016124e3565b94505060206128a6878288016124e3565b93505060406128b78782880161242e565b925050606085013567ffffffffffffffff8111156128d8576128d7612292565b5b6128e48782880161283f565b91505092959194509250565b600080604083850312156129075761290661228d565b5b6000612915858286016124e3565b9250506020612926858286016124e3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061297757607f821691505b60208210810361298a57612989612930565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129c660208361235d565b91506129d182612990565b602082019050919050565b600060208201905081810360008301526129f5816129b9565b9050919050565b7f4e6f2045544820697320617661696c61626c6520746f2077697468647261772e600082015250565b6000612a3260208361235d565b9150612a3d826129fc565b602082019050919050565b60006020820190508181036000830152612a6181612a25565b9050919050565b7f436f6e7472616374277320617265206e6f7420616c6c6f77656420746f206d6960008201527f6e742e0000000000000000000000000000000000000000000000000000000000602082015250565b6000612ac460238361235d565b9150612acf82612a68565b604082019050919050565b60006020820190508181036000830152612af381612ab7565b9050919050565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b6000612b3060138361235d565b9150612b3b82612afa565b602082019050919050565b60006020820190508181036000830152612b5f81612b23565b9050919050565b7f596f75206861766520746f206d696e74206174206c656173742031206368696c60008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bc260228361235d565b9150612bcd82612b66565b604082019050919050565b60006020820190508181036000830152612bf181612bb5565b9050919050565b7f43616e206f6e6c79206d696e74203520746f6b656e7320617420612074696d6560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c5460218361235d565b9150612c5f82612bf8565b604082019050919050565b60006020820190508181036000830152612c8381612c47565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cc48261240d565b9150612ccf8361240d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d0457612d03612c8a565b5b828201905092915050565b7f546869732077616c6c657420686173206d696e74656420746865206d6178207460008201527f6f6b656e7320616c6c6f7765642e000000000000000000000000000000000000602082015250565b6000612d6b602e8361235d565b9150612d7682612d0f565b604082019050919050565b60006020820190508181036000830152612d9a81612d5e565b9050919050565b7f546865206e756d62657220657863656564732074686520616d6f756e74206f6660008201527f20617661696c61626c65206368696c6472656e20746f206d696e742e00000000602082015250565b6000612dfd603c8361235d565b9150612e0882612da1565b604082019050919050565b60006020820190508181036000830152612e2c81612df0565b9050919050565b7f5468652073616c6520697320636f6d706c6574652e0000000000000000000000600082015250565b6000612e6960158361235d565b9150612e7482612e33565b602082019050919050565b60006020820190508181036000830152612e9881612e5c565b9050919050565b600081905092915050565b6000612eb582612352565b612ebf8185612e9f565b9350612ecf81856020860161236e565b80840191505092915050565b6000612ee78285612eaa565b9150612ef38284612eaa565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f5b60268361235d565b9150612f6682612eff565b604082019050919050565b60006020820190508181036000830152612f8a81612f4e565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612fb882612f91565b612fc28185612f9c565b9350612fd281856020860161236e565b612fdb816123a1565b840191505092915050565b6000608082019050612ffb60008301876124a2565b61300860208301866124a2565b6130156040830185612538565b81810360608301526130278184612fad565b905095945050505050565b600081519050613041816122c3565b92915050565b60006020828403121561305d5761305c61228d565b5b600061306b84828501613032565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212200e333ac9c0eb10e5c0b30938503a019f385b729b59d98dd610e0484477af451964736f6c634300080e0033

Deployed Bytecode Sourcemap

75:1772:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4416:607:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9304:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11305:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10781:463;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;268:43:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3678:306:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12165:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1636:203:4;;;;;;;;;;;;;:::i;:::-;;12395:179:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1531:99:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9100:142:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5082:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:3;;;;;;;;;;;;;:::i;:::-;;450:84:4;;;;;;;;;;;;;:::i;:::-;;177:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1029:85:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9466:102:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;540:749:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11572:303:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12640:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;128:43:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9634:313:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;357:26:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1295:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11941:162:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;318:32:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1911:198:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;224:38:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4416:607:1;4501:4;4811:10;4796:25;;:11;:25;;;;:101;;;;4887:10;4872:25;;:11;:25;;;;4796:101;:177;;;;4963:10;4948:25;;:11;:25;;;;4796:177;4777:196;;4416:607;;;:::o;9304:98::-;9358:13;9390:5;9383:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9304:98;:::o;11305:200::-;11373:7;11397:16;11405:7;11397;:16::i;:::-;11392:64;;11422:34;;;;;;;;;;;;;;11392:64;11474:15;:24;11490:7;11474:24;;;;;;;;;;;;;;;;;;;;;11467:31;;11305:200;;;:::o;10781:463::-;10853:13;10885:27;10904:7;10885:18;:27::i;:::-;10853:61;;10934:5;10928:11;;:2;:11;;;10924:48;;10948:24;;;;;;;;;;;;;;10924:48;11010:5;10987:28;;:19;:17;:19::i;:::-;:28;;;10983:172;;11034:44;11051:5;11058:19;:17;:19::i;:::-;11034:16;:44::i;:::-;11029:126;;11105:35;;;;;;;;;;;;;;11029:126;10983:172;11192:2;11165:15;:24;11181:7;11165:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11229:7;11225:2;11209:28;;11218:5;11209:28;;;;;;;;;;;;10843:401;10781:463;;:::o;268:43:4:-;309:2;268:43;:::o;3678:306:1:-;3731:7;3952:15;:13;:15::i;:::-;3937:12;;3921:13;;:28;:46;3914:53;;3678:306;:::o;12165:164::-;12294:28;12304:4;12310:2;12314:7;12294:9;:28::i;:::-;12165:164;;;:::o;1636:203:4:-;1252:12:3;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1683:12:4::1;1698:21;1683:36;;1747:1;1737:7;:11;1729:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1803:10;1795:28;;:37;1824:7;1795:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1673:166;1636:203::o:0;12395:179:1:-;12528:39;12545:4;12551:2;12555:7;12528:39;;;;;;;;;;;;:16;:39::i;:::-;12395:179;;;:::o;1531:99:4:-;1252:12:3;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1616:7:4::1;1601:12;:22;;;;;;;;;;;;:::i;:::-;;1531:99:::0;:::o;9100:142:1:-;9164:7;9206:27;9225:7;9206:18;:27::i;:::-;9183:52;;9100:142;;;:::o;5082:221::-;5146:7;5186:1;5169:19;;:5;:19;;;5165:60;;5197:28;;;;;;;;;;;;;;5165:60;1017:13;5242:18;:25;5261:5;5242:25;;;;;;;;;;;;;;;;:54;5235:61;;5082:221;;;:::o;1661:101:3:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;450:84:4:-;1252:12:3;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;515:12:4::1;;;;;;;;;;;514:13;499:12;;:28;;;;;;;;;;;;;;;;;;450:84::o:0;177:41::-;209:9;177:41;:::o;1029:85:3:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;9466:102:1:-;9522:13;9554:7;9547:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9466:102;:::o;540:749:4:-;597:13;613:14;:12;:14::i;:::-;597:30;;659:9;645:23;;:10;:23;;;637:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;726:12;;;;;;;;;;;718:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;795:1;780:12;:16;772:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;261:1;853:12;:26;;845:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;309:2;963:12;935:25;949:10;935:13;:25::i;:::-;:40;;;;:::i;:::-;:58;;927:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;167:4;1077:5;1062:12;:20;;;;:::i;:::-;:36;;1054:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;167:4;1181:5;:20;1173:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1238:35;1248:10;1260:12;1238:9;:35::i;:::-;587:702;540:749;:::o;11572:303:1:-;11682:19;:17;:19::i;:::-;11670:31;;:8;:31;;;11666:61;;11710:17;;;;;;;;;;;;;;11666:61;11790:8;11738:18;:39;11757:19;:17;:19::i;:::-;11738:39;;;;;;;;;;;;;;;:49;11778:8;11738:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;11849:8;11813:55;;11828:19;:17;:19::i;:::-;11813:55;;;11859:8;11813:55;;;;;;:::i;:::-;;;;;;;;11572:303;;:::o;12640:385::-;12801:28;12811:4;12817:2;12821:7;12801:9;:28::i;:::-;12861:1;12843:2;:14;;;:19;12839:180;;12881:56;12912:4;12918:2;12922:7;12931:5;12881:30;:56::i;:::-;12876:143;;12964:40;;;;;;;;;;;;;;12876:143;12839:180;12640:385;;;;:::o;128:43:4:-;167:4;128:43;:::o;9634:313:1:-;9707:13;9737:16;9745:7;9737;:16::i;:::-;9732:59;;9762:29;;;;;;;;;;;;;;9732:59;9802:21;9826:10;:8;:10::i;:::-;9802:34;;9878:1;9859:7;9853:21;:26;:87;;;;;;;;;;;;;;;;;9906:7;9915:18;9925:7;9915:9;:18::i;:::-;9889:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9853:87;9846:94;;;9634:313;;;:::o;357:26:4:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1295:113::-;1354:7;1380:21;1394:6;1380:13;:21::i;:::-;1373:28;;1295:113;;;:::o;11941:162:1:-;12038:4;12061:18;:25;12080:5;12061:25;;;;;;;;;;;;;;;:35;12087:8;12061:35;;;;;;;;;;;;;;;;;;;;;;;;;12054:42;;11941:162;;;;:::o;318:32:4:-;;;;;;;;;;;;;:::o;1911:198:3:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2019:1:::1;1999:22;;:8;:22;;::::0;1991:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;224:38:4:-;261:1;224:38;:::o;13271:268:1:-;13328:4;13382:7;13363:15;:13;:15::i;:::-;:26;;:65;;;;;13415:13;;13405:7;:23;13363:65;:150;;;;;13512:1;1769:8;13465:17;:26;13483:7;13465:26;;;;;;;;;;;;:43;:48;13363:150;13344:169;;13271:268;;;:::o;6677:1105::-;6744:7;6763:12;6778:7;6763:22;;6843:4;6824:15;:13;:15::i;:::-;:23;6820:898;;6876:13;;6869:4;:20;6865:853;;;6913:14;6930:17;:23;6948:4;6930:23;;;;;;;;;;;;6913:40;;7044:1;1769:8;7017:6;:23;:28;7013:687;;7528:111;7545:1;7535:6;:11;7528:111;;7587:17;:25;7605:6;;;;;;;7587:25;;;;;;;;;;;;7578:34;;7528:111;;;7671:6;7664:13;;;;;;7013:687;6891:827;6865:853;6820:898;7744:31;;;;;;;;;;;;;;6677:1105;;;;:::o;26896:103::-;26956:7;26982:10;26975:17;;26896:103;:::o;3459:90::-;3515:7;3459:90;:::o;18371:2460::-;18481:27;18511;18530:7;18511:18;:27::i;:::-;18481:57;;18594:4;18553:45;;18569:19;18553:45;;;18549:86;;18607:28;;;;;;;;;;;;;;18549:86;18646:22;18695:4;18672:27;;:19;:17;:19::i;:::-;:27;;;:86;;;;18715:43;18732:4;18738:19;:17;:19::i;:::-;18715:16;:43::i;:::-;18672:86;:145;;;;18798:19;:17;:19::i;:::-;18774:43;;:20;18786:7;18774:11;:20::i;:::-;:43;;;18672:145;18646:172;;18834:17;18829:66;;18860:35;;;;;;;;;;;;;;18829:66;18923:1;18909:16;;:2;:16;;;18905:52;;18934:23;;;;;;;;;;;;;;18905:52;18968:43;18990:4;18996:2;19000:7;19009:1;18968:21;:43::i;:::-;19081:15;:24;19097:7;19081:24;;;;;;;;;;;;19074:31;;;;;;;;;;;19466:18;:24;19485:4;19466:24;;;;;;;;;;;;;;;;19464:26;;;;;;;;;;;;19534:18;:22;19553:2;19534:22;;;;;;;;;;;;;;;;19532:24;;;;;;;;;;;2045:8;1656:3;19906:15;:41;;19865:21;19883:2;19865:17;:21::i;:::-;:83;:126;19820:17;:26;19838:7;19820:26;;;;;;;;;;;:171;;;;20158:1;2045:8;20108:19;:46;:51;20104:616;;20179:19;20211:1;20201:7;:11;20179:33;;20366:1;20332:17;:30;20350:11;20332:30;;;;;;;;;;;;:35;20328:378;;20468:13;;20453:11;:28;20449:239;;20646:19;20613:17;:30;20631:11;20613:30;;;;;;;;;;;:52;;;;20449:239;20328:378;20161:559;20104:616;20764:7;20760:2;20745:27;;20754:4;20745:27;;;;;;;;;;;;20782:42;20803:4;20809:2;20813:7;20822:1;20782:20;:42::i;:::-;18471:2360;;18371:2460;;;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;2263:187:3:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2326:124;2263:187;:::o;4072:277:1:-;4119:7;4317:15;:13;:15::i;:::-;4301:13;;:31;4294:38;;4072:277;:::o;5380:174::-;5441:7;1017:13;1151:2;5468:18;:25;5487:5;5468:25;;;;;;;;;;;;;;;;:49;;5467:80;5460:87;;5380:174;;;:::o;13618:102::-;13686:27;13696:2;13700:8;13686:27;;;;;;;;;;;;:9;:27::i;:::-;13618:102;;:::o;24436:697::-;24594:4;24639:2;24614:45;;;24660:19;:17;:19::i;:::-;24681:4;24687:7;24696:5;24614:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;24610:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24909:1;24892:6;:13;:18;24888:229;;24937:40;;;;;;;;;;;;;;24888:229;25077:6;25071:13;25062:6;25058:2;25054:15;25047:38;24610:517;24780:54;;;24770:64;;;:6;:64;;;;24763:71;;;24436:697;;;;;;:::o;1414:111:4:-;1474:13;1506:12;1499:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1414:111;:::o;27100:794:1:-;27157:13;27406:1;27397:5;:10;27393:59;;27427:10;;;;;;;;;;;;;;;;;;;;;27393:59;27465:12;27480:5;27465:20;;27499:14;27527:87;27542:1;27534:4;:9;27527:87;;27563:8;;;;;27597:2;27589:10;;;;;;:::i;:::-;;;;;27527:87;;;27627:19;27659:6;27649:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27627:39;;27680:163;27696:1;27687:5;:10;27680:163;;27717:8;;;;;;27794:2;27786:5;:10;;;;;:::i;:::-;;;27773:2;:24;27760:39;;27743:6;27750;27743:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;27826:2;27817:11;;;;;;:::i;:::-;;;;;27680:163;;;27870:6;27856:21;;;;;27100:794;;;;:::o;25764:154::-;;;;;:::o;10360:144::-;10424:14;10483:5;10473:15;;10360:144;;;:::o;26559:153::-;;;;;:::o;14080:2184::-;14198:20;14221:13;;14198:36;;14262:1;14248:16;;:2;:16;;;14244:48;;14273:19;;;;;;;;;;;;;;14244:48;14318:1;14306:8;:13;14302:44;;14328:18;;;;;;;;;;;;;;14302:44;14357:61;14387:1;14391:2;14395:12;14409:8;14357:21;:61::i;:::-;14950:1;1151:2;14921:1;:25;;14920:31;14908:8;:44;14882:18;:22;14901:2;14882:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;1913:3;15341:29;15368:1;15356:8;:13;15341:14;:29::i;:::-;:56;;1656:3;15279:15;:41;;15238:21;15256:2;15238:17;:21::i;:::-;:83;:160;15188:17;:31;15206:12;15188:31;;;;;;;;;;;:210;;;;15413:20;15436:12;15413:35;;15462:11;15491:8;15476:12;:23;15462:37;;15536:1;15518:2;:14;;;:19;15514:622;;15557:308;15612:12;15608:2;15587:38;;15604:1;15587:38;;;;;;;;;;;;15652:69;15691:1;15695:2;15699:14;;;;;;15715:5;15652:30;:69::i;:::-;15647:172;;15756:40;;;;;;;;;;;;;;15647:172;15860:3;15845:12;:18;15557:308;;15944:12;15927:13;;:29;15923:43;;15958:8;;;15923:43;15514:622;;;16005:117;16060:14;;;;;;16056:2;16035:40;;16052:1;16035:40;;;;;;;;;;;;16117:3;16102:12;:18;16005:117;;15514:622;16165:12;16149:13;:28;;;;14665:1523;;16197:60;16226:1;16230:2;16234:12;16248:8;16197:20;:60::i;:::-;14188:2076;14080:2184;;;:::o;10586:138::-;10644:14;10703:5;10693:15;;10586:138;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:5:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:182::-;13758:34;13754:1;13746:6;13742:14;13735:58;13618:182;:::o;13806:366::-;13948:3;13969:67;14033:2;14028:3;13969:67;:::i;:::-;13962:74;;14045:93;14134:3;14045:93;:::i;:::-;14163:2;14158:3;14154:12;14147:19;;13806:366;;;:::o;14178:419::-;14344:4;14382:2;14371:9;14367:18;14359:26;;14431:9;14425:4;14421:20;14417:1;14406:9;14402:17;14395:47;14459:131;14585:4;14459:131;:::i;:::-;14451:139;;14178:419;;;:::o;14603:222::-;14743:34;14739:1;14731:6;14727:14;14720:58;14812:5;14807:2;14799:6;14795:15;14788:30;14603:222;:::o;14831:366::-;14973:3;14994:67;15058:2;15053:3;14994:67;:::i;:::-;14987:74;;15070:93;15159:3;15070:93;:::i;:::-;15188:2;15183:3;15179:12;15172:19;;14831:366;;;:::o;15203:419::-;15369:4;15407:2;15396:9;15392:18;15384:26;;15456:9;15450:4;15446:20;15442:1;15431:9;15427:17;15420:47;15484:131;15610:4;15484:131;:::i;:::-;15476:139;;15203:419;;;:::o;15628:169::-;15768:21;15764:1;15756:6;15752:14;15745:45;15628:169;:::o;15803:366::-;15945:3;15966:67;16030:2;16025:3;15966:67;:::i;:::-;15959:74;;16042:93;16131:3;16042:93;:::i;:::-;16160:2;16155:3;16151:12;16144:19;;15803:366;;;:::o;16175:419::-;16341:4;16379:2;16368:9;16364:18;16356:26;;16428:9;16422:4;16418:20;16414:1;16403:9;16399:17;16392:47;16456:131;16582:4;16456:131;:::i;:::-;16448:139;;16175:419;;;:::o;16600:221::-;16740:34;16736:1;16728:6;16724:14;16717:58;16809:4;16804:2;16796:6;16792:15;16785:29;16600:221;:::o;16827:366::-;16969:3;16990:67;17054:2;17049:3;16990:67;:::i;:::-;16983:74;;17066:93;17155:3;17066:93;:::i;:::-;17184:2;17179:3;17175:12;17168:19;;16827:366;;;:::o;17199:419::-;17365:4;17403:2;17392:9;17388:18;17380:26;;17452:9;17446:4;17442:20;17438:1;17427:9;17423:17;17416:47;17480:131;17606:4;17480:131;:::i;:::-;17472:139;;17199:419;;;:::o;17624:220::-;17764:34;17760:1;17752:6;17748:14;17741:58;17833:3;17828:2;17820:6;17816:15;17809:28;17624:220;:::o;17850:366::-;17992:3;18013:67;18077:2;18072:3;18013:67;:::i;:::-;18006:74;;18089:93;18178:3;18089:93;:::i;:::-;18207:2;18202:3;18198:12;18191:19;;17850:366;;;:::o;18222:419::-;18388:4;18426:2;18415:9;18411:18;18403:26;;18475:9;18469:4;18465:20;18461:1;18450:9;18446:17;18439:47;18503:131;18629:4;18503:131;:::i;:::-;18495:139;;18222:419;;;:::o;18647:180::-;18695:77;18692:1;18685:88;18792:4;18789:1;18782:15;18816:4;18813:1;18806:15;18833:305;18873:3;18892:20;18910:1;18892:20;:::i;:::-;18887:25;;18926:20;18944:1;18926:20;:::i;:::-;18921:25;;19080:1;19012:66;19008:74;19005:1;19002:81;18999:107;;;19086:18;;:::i;:::-;18999:107;19130:1;19127;19123:9;19116:16;;18833:305;;;;:::o;19144:233::-;19284:34;19280:1;19272:6;19268:14;19261:58;19353:16;19348:2;19340:6;19336:15;19329:41;19144:233;:::o;19383:366::-;19525:3;19546:67;19610:2;19605:3;19546:67;:::i;:::-;19539:74;;19622:93;19711:3;19622:93;:::i;:::-;19740:2;19735:3;19731:12;19724:19;;19383:366;;;:::o;19755:419::-;19921:4;19959:2;19948:9;19944:18;19936:26;;20008:9;20002:4;19998:20;19994:1;19983:9;19979:17;19972:47;20036:131;20162:4;20036:131;:::i;:::-;20028:139;;19755:419;;;:::o;20180:247::-;20320:34;20316:1;20308:6;20304:14;20297:58;20389:30;20384:2;20376:6;20372:15;20365:55;20180:247;:::o;20433:366::-;20575:3;20596:67;20660:2;20655:3;20596:67;:::i;:::-;20589:74;;20672:93;20761:3;20672:93;:::i;:::-;20790:2;20785:3;20781:12;20774:19;;20433:366;;;:::o;20805:419::-;20971:4;21009:2;20998:9;20994:18;20986:26;;21058:9;21052:4;21048:20;21044:1;21033:9;21029:17;21022:47;21086:131;21212:4;21086:131;:::i;:::-;21078:139;;20805:419;;;:::o;21230:171::-;21370:23;21366:1;21358:6;21354:14;21347:47;21230:171;:::o;21407:366::-;21549:3;21570:67;21634:2;21629:3;21570:67;:::i;:::-;21563:74;;21646:93;21735:3;21646:93;:::i;:::-;21764:2;21759:3;21755:12;21748:19;;21407:366;;;:::o;21779:419::-;21945:4;21983:2;21972:9;21968:18;21960:26;;22032:9;22026:4;22022:20;22018:1;22007:9;22003:17;21996:47;22060:131;22186:4;22060:131;:::i;:::-;22052:139;;21779:419;;;:::o;22204:148::-;22306:11;22343:3;22328:18;;22204:148;;;;:::o;22358:377::-;22464:3;22492:39;22525:5;22492:39;:::i;:::-;22547:89;22629:6;22624:3;22547:89;:::i;:::-;22540:96;;22645:52;22690:6;22685:3;22678:4;22671:5;22667:16;22645:52;:::i;:::-;22722:6;22717:3;22713:16;22706:23;;22468:267;22358:377;;;;:::o;22741:435::-;22921:3;22943:95;23034:3;23025:6;22943:95;:::i;:::-;22936:102;;23055:95;23146:3;23137:6;23055:95;:::i;:::-;23048:102;;23167:3;23160:10;;22741:435;;;;;:::o;23182:225::-;23322:34;23318:1;23310:6;23306:14;23299:58;23391:8;23386:2;23378:6;23374:15;23367:33;23182:225;:::o;23413:366::-;23555:3;23576:67;23640:2;23635:3;23576:67;:::i;:::-;23569:74;;23652:93;23741:3;23652:93;:::i;:::-;23770:2;23765:3;23761:12;23754:19;;23413:366;;;:::o;23785:419::-;23951:4;23989:2;23978:9;23974:18;23966:26;;24038:9;24032:4;24028:20;24024:1;24013:9;24009:17;24002:47;24066:131;24192:4;24066:131;:::i;:::-;24058:139;;23785:419;;;:::o;24210:98::-;24261:6;24295:5;24289:12;24279:22;;24210:98;;;:::o;24314:168::-;24397:11;24431:6;24426:3;24419:19;24471:4;24466:3;24462:14;24447:29;;24314:168;;;;:::o;24488:360::-;24574:3;24602:38;24634:5;24602:38;:::i;:::-;24656:70;24719:6;24714:3;24656:70;:::i;:::-;24649:77;;24735:52;24780:6;24775:3;24768:4;24761:5;24757:16;24735:52;:::i;:::-;24812:29;24834:6;24812:29;:::i;:::-;24807:3;24803:39;24796:46;;24578:270;24488:360;;;;:::o;24854:640::-;25049:4;25087:3;25076:9;25072:19;25064:27;;25101:71;25169:1;25158:9;25154:17;25145:6;25101:71;:::i;:::-;25182:72;25250:2;25239:9;25235:18;25226:6;25182:72;:::i;:::-;25264;25332:2;25321:9;25317:18;25308:6;25264:72;:::i;:::-;25383:9;25377:4;25373:20;25368:2;25357:9;25353:18;25346:48;25411:76;25482:4;25473:6;25411:76;:::i;:::-;25403:84;;24854:640;;;;;;;:::o;25500:141::-;25556:5;25587:6;25581:13;25572:22;;25603:32;25629:5;25603:32;:::i;:::-;25500:141;;;;:::o;25647:349::-;25716:6;25765:2;25753:9;25744:7;25740:23;25736:32;25733:119;;;25771:79;;:::i;:::-;25733:119;25891:1;25916:63;25971:7;25962:6;25951:9;25947:22;25916:63;:::i;:::-;25906:73;;25862:127;25647:349;;;;:::o;26002:180::-;26050:77;26047:1;26040:88;26147:4;26144:1;26137:15;26171:4;26168:1;26161:15;26188:180;26236:77;26233:1;26226:88;26333:4;26330:1;26323:15;26357:4;26354:1;26347:15

Swarm Source

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