ETH Price: $3,441.31 (-0.42%)
Gas: 2 Gwei

Token

Tenshi Akuma (TA)
 

Overview

Max Total Supply

3,000 TA

Holders

584

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*馬背上的雞.eth
Balance
8 TA
0xc196eb8d5a08fb6ce0297b2748e18137f2b431fc
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:
TenshiAkuma

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-02
*/

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.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: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    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();
    }

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

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

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

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

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

    /**
     * @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 ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

// File: @openzeppelin/contracts/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: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: TENSHI_AKUMA.sol


pragma solidity 0.8.15;





contract TenshiAkuma is ERC721A, Ownable {
    using Strings for uint256;
    using ECDSA for bytes32;

    address private adminSigner;

    string private _baseTokenURI;

    uint256 public constant MAX_SUPPLY = 3000;
    uint256 public constant RESERVE = 200;
    uint256 public constant MAX_FIRST_PREMINT = 2;
    uint256 public constant MAX_PREMINT = 8;
    uint256 public constant MAX_PUBLIC_MINT = 8;
	uint256 public reserveMinted;

    bool public firstRoundActive;

    enum SalePhase {
        Locked,
        PreMint,
        PublicMint
    }

    SalePhase public phase = SalePhase.Locked;

    mapping(address => uint256) public firstPreMintCount;
    mapping(address => uint256) public totalPreMintCount;
    mapping(address => uint256) public publicMintCount;

    constructor(
        address signer,
        string memory uri
    ) ERC721A("Tenshi Akuma", "TA") {
        firstRoundActive = true;
        adminSigner = signer;
        _baseTokenURI = uri;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function preMint(uint256 _quantity, bytes calldata signature)
        external
        callerIsUser
    {
        require(phase == SalePhase.PreMint, "Allowlist sale is not active");
        require(recoverSigner(signature) == adminSigner, "Not on allowlist");

        if (firstRoundActive) {
            require(
                firstPreMintCount[msg.sender] + _quantity <= MAX_FIRST_PREMINT,
                "Exceed first round limit"
            );
            firstPreMintCount[msg.sender] += _quantity;
        } else {
            require(
                totalPreMintCount[msg.sender] + _quantity <= MAX_PREMINT,
                "Exceed allowlist limit"
            );
        }

        totalPreMintCount[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function publicMint(uint256 _quantity) external callerIsUser {
        require(phase == SalePhase.PublicMint, "Public sale has not started");
        require(publicMintCount[msg.sender] + _quantity <= MAX_PUBLIC_MINT, "Exceed mint limit");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Reach max supply");

        publicMintCount[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    // Reserve tokens for team 
    function reserveMint(uint256 _quantity) external onlyOwner {
        require(reserveMinted + _quantity <= RESERVE, "Exceed reserve supply");

        reserveMinted += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    // Verify if signed by admin signer
    function recoverSigner(bytes calldata signature)
        internal
        view
        returns (address)
    {
        return
            keccak256(
                abi.encodePacked(
                    "\x19Ethereum Signed Message:\n32",
                    bytes32(uint256(uint160(msg.sender)))
                )
            ).recover(signature);
    }

    // Sale phase control
    function setPhase(SalePhase phase_) external onlyOwner {
        phase = phase_;
    }

    function togglePreMintLimit() external onlyOwner {
        firstRoundActive = !firstRoundActive;
    }

    function setSigner(address _signer) external onlyOwner {
        adminSigner = _signer;
    }

    // Metadata
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseTokenURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "URI query for nonexistent token");

        uint256 trueId = _tokenId + 1;
        return string(abi.encodePacked(_baseTokenURI, trueId.toString(), ".json"));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"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_FIRST_PREMINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PREMINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE","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":[{"internalType":"address","name":"","type":"address"}],"name":"firstPreMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstRoundActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"enum TenshiAkuma.SalePhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"preMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveMinted","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TenshiAkuma.SalePhase","name":"phase_","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","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":"togglePreMintLimit","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":[{"internalType":"address","name":"","type":"address"}],"name":"totalPreMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60806040526000600c60016101000a81548160ff021916908360028111156200002d576200002c62000276565b5b02179055503480156200003f57600080fd5b506040516200494e3803806200494e8339818101604052810190620000659190620004a7565b6040518060400160405280600c81526020017f54656e73686920416b756d6100000000000000000000000000000000000000008152506040518060400160405280600281526020017f54410000000000000000000000000000000000000000000000000000000000008152508160029081620000e2919062000758565b508060039081620000f4919062000758565b5062000105620001a360201b60201c565b60008190555050506200012d62000121620001a860201b60201c565b620001b060201b60201c565b6001600c60006101000a81548160ff02191690831515021790555081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a90816200019a919062000758565b5050506200083f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620002e682620002b9565b9050919050565b620002f881620002d9565b81146200030457600080fd5b50565b6000815190506200031881620002ed565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003738262000328565b810181811067ffffffffffffffff8211171562000395576200039462000339565b5b80604052505050565b6000620003aa620002a5565b9050620003b8828262000368565b919050565b600067ffffffffffffffff821115620003db57620003da62000339565b5b620003e68262000328565b9050602081019050919050565b60005b8381101562000413578082015181840152602081019050620003f6565b8381111562000423576000848401525b50505050565b6000620004406200043a84620003bd565b6200039e565b9050828152602081018484840111156200045f576200045e62000323565b5b6200046c848285620003f3565b509392505050565b600082601f8301126200048c576200048b6200031e565b5b81516200049e84826020860162000429565b91505092915050565b60008060408385031215620004c157620004c0620002af565b5b6000620004d18582860162000307565b925050602083015167ffffffffffffffff811115620004f557620004f4620002b4565b5b620005038582860162000474565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056057607f821691505b60208210810362000576576200057562000518565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005e07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005a1565b620005ec8683620005a1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000639620006336200062d8462000604565b6200060e565b62000604565b9050919050565b6000819050919050565b620006558362000618565b6200066d620006648262000640565b848454620005ae565b825550505050565b600090565b6200068462000675565b620006918184846200064a565b505050565b5b81811015620006b957620006ad6000826200067a565b60018101905062000697565b5050565b601f8211156200070857620006d2816200057c565b620006dd8462000591565b81016020851015620006ed578190505b62000705620006fc8562000591565b83018262000696565b50505b505050565b600082821c905092915050565b60006200072d600019846008026200070d565b1980831691505092915050565b60006200074883836200071a565b9150826002028217905092915050565b62000763826200050d565b67ffffffffffffffff8111156200077f576200077e62000339565b5b6200078b825462000547565b62000798828285620006bd565b600060209050601f831160018114620007d05760008415620007bb578287015190505b620007c785826200073a565b86555062000837565b601f198416620007e0866200057c565b60005b828110156200080a57848901518255600182019150602085019450602081019050620007e3565b868310156200082a578489015162000826601f8916826200071a565b8355505b6001600288020188555050505b505050505050565b6140ff806200084f6000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063b646a064116100ad578063c87b56dd1161007c578063c87b56dd146105dc578063d37702661461060c578063e985e9c514610616578063f2fde38b14610646578063fdd462d21461066257610211565b8063b646a0641461056a578063b88d4fde14610588578063c03afb59146105a4578063c43a7993146105c057610211565b806396330b5f116100f457806396330b5f146104c45780639d2cc436146104f4578063a22cb46514610512578063a9e634311461052e578063b1c9fe6e1461054c57610211565b806370a082311461044e578063715018a61461047e5780638da5cb5b1461048857806395d89b41146104a657610211565b80632db11544116101a85780634c81433f116101775780634c81433f146103965780635f4e5828146103b45780636352211e146103e457806365f13097146104145780636c19e7831461043257610211565b80632db115441461032457806330176e131461034057806332cb6b0c1461035c57806342842e0e1461037a57610211565b80631342ff4c116101e45780631342ff4c146102b057806318160ddd146102cc57806320eba9ed146102ea57806323b872dd1461030857610211565b806301ffc9a71461021657806306fdde0314610246578063081812fc14610264578063095ea7b314610294575b600080fd5b610230600480360381019061022b9190612a27565b610692565b60405161023d9190612a6f565b60405180910390f35b61024e610724565b60405161025b9190612b23565b60405180910390f35b61027e60048036038101906102799190612b7b565b6107b6565b60405161028b9190612be9565b60405180910390f35b6102ae60048036038101906102a99190612c30565b610832565b005b6102ca60048036038101906102c59190612b7b565b6109d8565b005b6102d4610acb565b6040516102e19190612c7f565b60405180910390f35b6102f2610ae2565b6040516102ff9190612a6f565b60405180910390f35b610322600480360381019061031d9190612c9a565b610af5565b005b61033e60048036038101906103399190612b7b565b610b05565b005b61035a60048036038101906103559190612d52565b610d30565b005b610364610dc2565b6040516103719190612c7f565b60405180910390f35b610394600480360381019061038f9190612c9a565b610dc8565b005b61039e610de8565b6040516103ab9190612c7f565b60405180910390f35b6103ce60048036038101906103c99190612d9f565b610dee565b6040516103db9190612c7f565b60405180910390f35b6103fe60048036038101906103f99190612b7b565b610e06565b60405161040b9190612be9565b60405180910390f35b61041c610e18565b6040516104299190612c7f565b60405180910390f35b61044c60048036038101906104479190612d9f565b610e1d565b005b61046860048036038101906104639190612d9f565b610edd565b6040516104759190612c7f565b60405180910390f35b610486610f95565b005b61049061101d565b60405161049d9190612be9565b60405180910390f35b6104ae611047565b6040516104bb9190612b23565b60405180910390f35b6104de60048036038101906104d99190612d9f565b6110d9565b6040516104eb9190612c7f565b60405180910390f35b6104fc6110f1565b6040516105099190612c7f565b60405180910390f35b61052c60048036038101906105279190612df8565b6110f6565b005b61053661126d565b6040516105439190612c7f565b60405180910390f35b610554611272565b6040516105619190612eaf565b60405180910390f35b610572611285565b60405161057f9190612c7f565b60405180910390f35b6105a2600480360381019061059d9190612ffa565b61128a565b005b6105be60048036038101906105b991906130a2565b6112fd565b005b6105da60048036038101906105d59190613125565b6113a6565b005b6105f660048036038101906105f19190612b7b565b611715565b6040516106039190612b23565b60405180910390f35b6106146117a3565b005b610630600480360381019061062b9190613185565b61184b565b60405161063d9190612a6f565b60405180910390f35b610660600480360381019061065b9190612d9f565b6118df565b005b61067c60048036038101906106779190612d9f565b6119d6565b6040516106899190612c7f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ed57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610733906131f4565b80601f016020809104026020016040519081016040528092919081815260200182805461075f906131f4565b80156107ac5780601f10610781576101008083540402835291602001916107ac565b820191906000526020600020905b81548152906001019060200180831161078f57829003601f168201915b5050505050905090565b60006107c1826119ee565b6107f7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083d82611a4d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c3611b19565b73ffffffffffffffffffffffffffffffffffffffff1614610926576108ef816108ea611b19565b61184b565b610925576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6109e0611b21565b73ffffffffffffffffffffffffffffffffffffffff166109fe61101d565b73ffffffffffffffffffffffffffffffffffffffff1614610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b90613271565b60405180910390fd5b60c881600b54610a6491906132c0565b1115610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c90613362565b60405180910390fd5b80600b6000828254610ab791906132c0565b92505081905550610ac83382611b29565b50565b6000610ad5611b47565b6001546000540303905090565b600c60009054906101000a900460ff1681565b610b00838383611b4c565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a906133ce565b60405180910390fd5b600280811115610b8657610b85612e38565b5b600c60019054906101000a900460ff166002811115610ba857610ba7612e38565b5b14610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf9061343a565b60405180910390fd5b600881600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c3591906132c0565b1115610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d906134a6565b60405180910390fd5b610bb881610c82610acb565b610c8c91906132c0565b1115610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490613512565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d1c91906132c0565b92505081905550610d2d3382611b29565b50565b610d38611b21565b73ffffffffffffffffffffffffffffffffffffffff16610d5661101d565b73ffffffffffffffffffffffffffffffffffffffff1614610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da390613271565b60405180910390fd5b8181600a9182610dbd9291906136e9565b505050565b610bb881565b610de38383836040518060200160405280600081525061128a565b505050565b600b5481565b600e6020528060005260406000206000915090505481565b6000610e1182611a4d565b9050919050565b600881565b610e25611b21565b73ffffffffffffffffffffffffffffffffffffffff16610e4361101d565b73ffffffffffffffffffffffffffffffffffffffff1614610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090613271565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f44576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f9d611b21565b73ffffffffffffffffffffffffffffffffffffffff16610fbb61101d565b73ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890613271565b60405180910390fd5b61101b6000611ef3565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611056906131f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611082906131f4565b80156110cf5780601f106110a4576101008083540402835291602001916110cf565b820191906000526020600020905b8154815290600101906020018083116110b257829003601f168201915b5050505050905090565b600f6020528060005260406000206000915090505481565b60c881565b6110fe611b19565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611162576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061116f611b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661121c611b19565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112619190612a6f565b60405180910390a35050565b600881565b600c60019054906101000a900460ff1681565b600281565b611295848484611b4c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112f7576112c084848484611fb9565b6112f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611305611b21565b73ffffffffffffffffffffffffffffffffffffffff1661132361101d565b73ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137090613271565b60405180910390fd5b80600c60016101000a81548160ff0219169083600281111561139e5761139d612e38565b5b021790555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b906133ce565b60405180910390fd5b6001600281111561142857611427612e38565b5b600c60019054906101000a900460ff16600281111561144a57611449612e38565b5b1461148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190613805565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114cd8383612109565b73ffffffffffffffffffffffffffffffffffffffff1614611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a90613871565b60405180910390fd5b600c60009054906101000a900460ff161561162157600283600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461158591906132c0565b11156115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd906138dd565b60405180910390fd5b82600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461161591906132c0565b925050819055506116b0565b600883600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461166e91906132c0565b11156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a690613949565b60405180910390fd5b5b82600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ff91906132c0565b925050819055506117103384611b29565b505050565b6060611720826119ee565b61175f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611756906139b5565b60405180910390fd5b600060018361176e91906132c0565b9050600a61177b826121a9565b60405160200161178c929190613ae0565b604051602081830303815290604052915050919050565b6117ab611b21565b73ffffffffffffffffffffffffffffffffffffffff166117c961101d565b73ffffffffffffffffffffffffffffffffffffffff161461181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690613271565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118e7611b21565b73ffffffffffffffffffffffffffffffffffffffff1661190561101d565b73ffffffffffffffffffffffffffffffffffffffff161461195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290613271565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190613b81565b60405180910390fd5b6119d381611ef3565b50565b600d6020528060005260406000206000915090505481565b6000816119f9611b47565b11158015611a08575060005482105b8015611a46575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611a5c611b47565b11611ae257600054811015611ae15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611adf575b60008103611ad5576004600083600190039350838152602001908152602001600020549050611aab565b8092505050611b14565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b611b43828260405180602001604052806000815250612309565b5050565b600090565b6000611b5782611a4d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611bbe576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611bdf611b19565b73ffffffffffffffffffffffffffffffffffffffff161480611c0e5750611c0d85611c08611b19565b61184b565b5b80611c535750611c1c611b19565b73ffffffffffffffffffffffffffffffffffffffff16611c3b846107b6565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c8c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611cf2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cff85858560016125bc565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611dfc866125c2565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611e845760006001840190506000600460008381526020019081526020016000205403611e82576000548114611e81578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eec85858560016125cc565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fdf611b19565b8786866040518563ffffffff1660e01b81526004016120019493929190613bf6565b6020604051808303816000875af192505050801561203d57506040513d601f19601f8201168201806040525081019061203a9190613c57565b60015b6120b6573d806000811461206d576040519150601f19603f3d011682016040523d82523d6000602084013e612072565b606091505b5060008151036120ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60006121a183838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050503373ffffffffffffffffffffffffffffffffffffffff1660001b60405160200161217d9190613cfb565b604051602081830303815290604052805190602001206125d290919063ffffffff16565b905092915050565b6060600082036121f0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612304565b600082905060005b6000821461222257808061220b90613d21565b915050600a8261221b9190613d98565b91506121f8565b60008167ffffffffffffffff81111561223e5761223d612ecf565b5b6040519080825280601f01601f1916602001820160405280156122705781602001600182028036833780820191505090505b5090505b600085146122fd576001826122899190613dc9565b9150600a856122989190613dfd565b60306122a491906132c0565b60f81b8183815181106122ba576122b9613e2e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122f69190613d98565b9450612274565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612375576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036123af576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123bc60008583866125bc565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612421600185146125f9565b901b60a042901b612431866125c2565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612535575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e56000878480600101955087611fb9565b61251b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061247657826000541461253057600080fd5b6125a0565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612536575b8160008190555050506125b660008583866125cc565b50505050565b50505050565b6000819050919050565b50505050565b60008060006125e18585612603565b915091506125ee81612684565b819250505092915050565b6000819050919050565b60008060418351036126445760008060006020860151925060408601519150606086015160001a905061263887828585612850565b9450945050505061267d565b604083510361267457600080602085015191506040850151905061266986838361295c565b93509350505061267d565b60006002915091505b9250929050565b6000600481111561269857612697612e38565b5b8160048111156126ab576126aa612e38565b5b031561284d57600160048111156126c5576126c4612e38565b5b8160048111156126d8576126d7612e38565b5b03612718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270f90613ea9565b60405180910390fd5b6002600481111561272c5761272b612e38565b5b81600481111561273f5761273e612e38565b5b0361277f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277690613f15565b60405180910390fd5b6003600481111561279357612792612e38565b5b8160048111156127a6576127a5612e38565b5b036127e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dd90613fa7565b60405180910390fd5b6004808111156127f9576127f8612e38565b5b81600481111561280c5761280b612e38565b5b0361284c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284390614039565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561288b576000600391509150612953565b601b8560ff16141580156128a35750601c8560ff1614155b156128b5576000600491509150612953565b6000600187878787604051600081526020016040526040516128da9493929190614084565b6020604051602081039080840390855afa1580156128fc573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361294a57600060019250925050612953565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c61299f91906132c0565b90506129ad87828885612850565b935093505050935093915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a04816129cf565b8114612a0f57600080fd5b50565b600081359050612a21816129fb565b92915050565b600060208284031215612a3d57612a3c6129c5565b5b6000612a4b84828501612a12565b91505092915050565b60008115159050919050565b612a6981612a54565b82525050565b6000602082019050612a846000830184612a60565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ac4578082015181840152602081019050612aa9565b83811115612ad3576000848401525b50505050565b6000601f19601f8301169050919050565b6000612af582612a8a565b612aff8185612a95565b9350612b0f818560208601612aa6565b612b1881612ad9565b840191505092915050565b60006020820190508181036000830152612b3d8184612aea565b905092915050565b6000819050919050565b612b5881612b45565b8114612b6357600080fd5b50565b600081359050612b7581612b4f565b92915050565b600060208284031215612b9157612b906129c5565b5b6000612b9f84828501612b66565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bd382612ba8565b9050919050565b612be381612bc8565b82525050565b6000602082019050612bfe6000830184612bda565b92915050565b612c0d81612bc8565b8114612c1857600080fd5b50565b600081359050612c2a81612c04565b92915050565b60008060408385031215612c4757612c466129c5565b5b6000612c5585828601612c1b565b9250506020612c6685828601612b66565b9150509250929050565b612c7981612b45565b82525050565b6000602082019050612c946000830184612c70565b92915050565b600080600060608486031215612cb357612cb26129c5565b5b6000612cc186828701612c1b565b9350506020612cd286828701612c1b565b9250506040612ce386828701612b66565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612d1257612d11612ced565b5b8235905067ffffffffffffffff811115612d2f57612d2e612cf2565b5b602083019150836001820283011115612d4b57612d4a612cf7565b5b9250929050565b60008060208385031215612d6957612d686129c5565b5b600083013567ffffffffffffffff811115612d8757612d866129ca565b5b612d9385828601612cfc565b92509250509250929050565b600060208284031215612db557612db46129c5565b5b6000612dc384828501612c1b565b91505092915050565b612dd581612a54565b8114612de057600080fd5b50565b600081359050612df281612dcc565b92915050565b60008060408385031215612e0f57612e0e6129c5565b5b6000612e1d85828601612c1b565b9250506020612e2e85828601612de3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110612e7857612e77612e38565b5b50565b6000819050612e8982612e67565b919050565b6000612e9982612e7b565b9050919050565b612ea981612e8e565b82525050565b6000602082019050612ec46000830184612ea0565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f0782612ad9565b810181811067ffffffffffffffff82111715612f2657612f25612ecf565b5b80604052505050565b6000612f396129bb565b9050612f458282612efe565b919050565b600067ffffffffffffffff821115612f6557612f64612ecf565b5b612f6e82612ad9565b9050602081019050919050565b82818337600083830152505050565b6000612f9d612f9884612f4a565b612f2f565b905082815260208101848484011115612fb957612fb8612eca565b5b612fc4848285612f7b565b509392505050565b600082601f830112612fe157612fe0612ced565b5b8135612ff1848260208601612f8a565b91505092915050565b60008060008060808587031215613014576130136129c5565b5b600061302287828801612c1b565b945050602061303387828801612c1b565b935050604061304487828801612b66565b925050606085013567ffffffffffffffff811115613065576130646129ca565b5b61307187828801612fcc565b91505092959194509250565b6003811061308a57600080fd5b50565b60008135905061309c8161307d565b92915050565b6000602082840312156130b8576130b76129c5565b5b60006130c68482850161308d565b91505092915050565b60008083601f8401126130e5576130e4612ced565b5b8235905067ffffffffffffffff81111561310257613101612cf2565b5b60208301915083600182028301111561311e5761311d612cf7565b5b9250929050565b60008060006040848603121561313e5761313d6129c5565b5b600061314c86828701612b66565b935050602084013567ffffffffffffffff81111561316d5761316c6129ca565b5b613179868287016130cf565b92509250509250925092565b6000806040838503121561319c5761319b6129c5565b5b60006131aa85828601612c1b565b92505060206131bb85828601612c1b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061320c57607f821691505b60208210810361321f5761321e6131c5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061325b602083612a95565b915061326682613225565b602082019050919050565b6000602082019050818103600083015261328a8161324e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132cb82612b45565b91506132d683612b45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330b5761330a613291565b5b828201905092915050565b7f457863656564207265736572766520737570706c790000000000000000000000600082015250565b600061334c601583612a95565b915061335782613316565b602082019050919050565b6000602082019050818103600083015261337b8161333f565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006133b8601e83612a95565b91506133c382613382565b602082019050919050565b600060208201905081810360008301526133e7816133ab565b9050919050565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b6000613424601b83612a95565b915061342f826133ee565b602082019050919050565b6000602082019050818103600083015261345381613417565b9050919050565b7f457863656564206d696e74206c696d6974000000000000000000000000000000600082015250565b6000613490601183612a95565b915061349b8261345a565b602082019050919050565b600060208201905081810360008301526134bf81613483565b9050919050565b7f5265616368206d617820737570706c7900000000000000000000000000000000600082015250565b60006134fc601083612a95565b9150613507826134c6565b602082019050919050565b6000602082019050818103600083015261352b816134ef565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261359f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613562565b6135a98683613562565b95508019841693508086168417925050509392505050565b6000819050919050565b60006135e66135e16135dc84612b45565b6135c1565b612b45565b9050919050565b6000819050919050565b613600836135cb565b61361461360c826135ed565b84845461356f565b825550505050565b600090565b61362961361c565b6136348184846135f7565b505050565b5b818110156136585761364d600082613621565b60018101905061363a565b5050565b601f82111561369d5761366e8161353d565b61367784613552565b81016020851015613686578190505b61369a61369285613552565b830182613639565b50505b505050565b600082821c905092915050565b60006136c0600019846008026136a2565b1980831691505092915050565b60006136d983836136af565b9150826002028217905092915050565b6136f38383613532565b67ffffffffffffffff81111561370c5761370b612ecf565b5b61371682546131f4565b61372182828561365c565b6000601f831160018114613750576000841561373e578287013590505b61374885826136cd565b8655506137b0565b601f19841661375e8661353d565b60005b8281101561378657848901358255600182019150602085019450602081019050613761565b868310156137a3578489013561379f601f8916826136af565b8355505b6001600288020188555050505b50505050505050565b7f416c6c6f776c6973742073616c65206973206e6f742061637469766500000000600082015250565b60006137ef601c83612a95565b91506137fa826137b9565b602082019050919050565b6000602082019050818103600083015261381e816137e2565b9050919050565b7f4e6f74206f6e20616c6c6f776c69737400000000000000000000000000000000600082015250565b600061385b601083612a95565b915061386682613825565b602082019050919050565b6000602082019050818103600083015261388a8161384e565b9050919050565b7f45786365656420666972737420726f756e64206c696d69740000000000000000600082015250565b60006138c7601883612a95565b91506138d282613891565b602082019050919050565b600060208201905081810360008301526138f6816138ba565b9050919050565b7f45786365656420616c6c6f776c697374206c696d697400000000000000000000600082015250565b6000613933601683612a95565b915061393e826138fd565b602082019050919050565b6000602082019050818103600083015261396281613926565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b600061399f601f83612a95565b91506139aa82613969565b602082019050919050565b600060208201905081810360008301526139ce81613992565b9050919050565b600081905092915050565b600081546139ed816131f4565b6139f781866139d5565b94506001821660008114613a125760018114613a2757613a5a565b60ff1983168652811515820286019350613a5a565b613a308561353d565b60005b83811015613a5257815481890152600182019150602081019050613a33565b838801955050505b50505092915050565b6000613a6e82612a8a565b613a7881856139d5565b9350613a88818560208601612aa6565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613aca6005836139d5565b9150613ad582613a94565b600582019050919050565b6000613aec82856139e0565b9150613af88284613a63565b9150613b0382613abd565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b6b602683612a95565b9150613b7682613b0f565b604082019050919050565b60006020820190508181036000830152613b9a81613b5e565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613bc882613ba1565b613bd28185613bac565b9350613be2818560208601612aa6565b613beb81612ad9565b840191505092915050565b6000608082019050613c0b6000830187612bda565b613c186020830186612bda565b613c256040830185612c70565b8181036060830152613c378184613bbd565b905095945050505050565b600081519050613c51816129fb565b92915050565b600060208284031215613c6d57613c6c6129c5565b5b6000613c7b84828501613c42565b91505092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000613cba601c836139d5565b9150613cc582613c84565b601c82019050919050565b6000819050919050565b6000819050919050565b613cf5613cf082613cd0565b613cda565b82525050565b6000613d0682613cad565b9150613d128284613ce4565b60208201915081905092915050565b6000613d2c82612b45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d5e57613d5d613291565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613da382612b45565b9150613dae83612b45565b925082613dbe57613dbd613d69565b5b828204905092915050565b6000613dd482612b45565b9150613ddf83612b45565b925082821015613df257613df1613291565b5b828203905092915050565b6000613e0882612b45565b9150613e1383612b45565b925082613e2357613e22613d69565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613e93601883612a95565b9150613e9e82613e5d565b602082019050919050565b60006020820190508181036000830152613ec281613e86565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613eff601f83612a95565b9150613f0a82613ec9565b602082019050919050565b60006020820190508181036000830152613f2e81613ef2565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f91602283612a95565b9150613f9c82613f35565b604082019050919050565b60006020820190508181036000830152613fc081613f84565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614023602283612a95565b915061402e82613fc7565b604082019050919050565b6000602082019050818103600083015261405281614016565b9050919050565b61406281613cd0565b82525050565b600060ff82169050919050565b61407e81614068565b82525050565b60006080820190506140996000830187614059565b6140a66020830186614075565b6140b36040830185614059565b6140c06060830184614059565b9594505050505056fea264697066735822122095ffb088318ed08b247a24b1d2647e0441048705fdbc9e2f788201fccaece17a64736f6c634300080f0033000000000000000000000000f6ff4dbae2d50f00d84cdeacba3105e2aa4c618b0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003e68747470733a2f2f74656e7368692d616b756d612e73332e61702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f6d657461646174612f0000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063b646a064116100ad578063c87b56dd1161007c578063c87b56dd146105dc578063d37702661461060c578063e985e9c514610616578063f2fde38b14610646578063fdd462d21461066257610211565b8063b646a0641461056a578063b88d4fde14610588578063c03afb59146105a4578063c43a7993146105c057610211565b806396330b5f116100f457806396330b5f146104c45780639d2cc436146104f4578063a22cb46514610512578063a9e634311461052e578063b1c9fe6e1461054c57610211565b806370a082311461044e578063715018a61461047e5780638da5cb5b1461048857806395d89b41146104a657610211565b80632db11544116101a85780634c81433f116101775780634c81433f146103965780635f4e5828146103b45780636352211e146103e457806365f13097146104145780636c19e7831461043257610211565b80632db115441461032457806330176e131461034057806332cb6b0c1461035c57806342842e0e1461037a57610211565b80631342ff4c116101e45780631342ff4c146102b057806318160ddd146102cc57806320eba9ed146102ea57806323b872dd1461030857610211565b806301ffc9a71461021657806306fdde0314610246578063081812fc14610264578063095ea7b314610294575b600080fd5b610230600480360381019061022b9190612a27565b610692565b60405161023d9190612a6f565b60405180910390f35b61024e610724565b60405161025b9190612b23565b60405180910390f35b61027e60048036038101906102799190612b7b565b6107b6565b60405161028b9190612be9565b60405180910390f35b6102ae60048036038101906102a99190612c30565b610832565b005b6102ca60048036038101906102c59190612b7b565b6109d8565b005b6102d4610acb565b6040516102e19190612c7f565b60405180910390f35b6102f2610ae2565b6040516102ff9190612a6f565b60405180910390f35b610322600480360381019061031d9190612c9a565b610af5565b005b61033e60048036038101906103399190612b7b565b610b05565b005b61035a60048036038101906103559190612d52565b610d30565b005b610364610dc2565b6040516103719190612c7f565b60405180910390f35b610394600480360381019061038f9190612c9a565b610dc8565b005b61039e610de8565b6040516103ab9190612c7f565b60405180910390f35b6103ce60048036038101906103c99190612d9f565b610dee565b6040516103db9190612c7f565b60405180910390f35b6103fe60048036038101906103f99190612b7b565b610e06565b60405161040b9190612be9565b60405180910390f35b61041c610e18565b6040516104299190612c7f565b60405180910390f35b61044c60048036038101906104479190612d9f565b610e1d565b005b61046860048036038101906104639190612d9f565b610edd565b6040516104759190612c7f565b60405180910390f35b610486610f95565b005b61049061101d565b60405161049d9190612be9565b60405180910390f35b6104ae611047565b6040516104bb9190612b23565b60405180910390f35b6104de60048036038101906104d99190612d9f565b6110d9565b6040516104eb9190612c7f565b60405180910390f35b6104fc6110f1565b6040516105099190612c7f565b60405180910390f35b61052c60048036038101906105279190612df8565b6110f6565b005b61053661126d565b6040516105439190612c7f565b60405180910390f35b610554611272565b6040516105619190612eaf565b60405180910390f35b610572611285565b60405161057f9190612c7f565b60405180910390f35b6105a2600480360381019061059d9190612ffa565b61128a565b005b6105be60048036038101906105b991906130a2565b6112fd565b005b6105da60048036038101906105d59190613125565b6113a6565b005b6105f660048036038101906105f19190612b7b565b611715565b6040516106039190612b23565b60405180910390f35b6106146117a3565b005b610630600480360381019061062b9190613185565b61184b565b60405161063d9190612a6f565b60405180910390f35b610660600480360381019061065b9190612d9f565b6118df565b005b61067c60048036038101906106779190612d9f565b6119d6565b6040516106899190612c7f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ed57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610733906131f4565b80601f016020809104026020016040519081016040528092919081815260200182805461075f906131f4565b80156107ac5780601f10610781576101008083540402835291602001916107ac565b820191906000526020600020905b81548152906001019060200180831161078f57829003601f168201915b5050505050905090565b60006107c1826119ee565b6107f7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083d82611a4d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c3611b19565b73ffffffffffffffffffffffffffffffffffffffff1614610926576108ef816108ea611b19565b61184b565b610925576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6109e0611b21565b73ffffffffffffffffffffffffffffffffffffffff166109fe61101d565b73ffffffffffffffffffffffffffffffffffffffff1614610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b90613271565b60405180910390fd5b60c881600b54610a6491906132c0565b1115610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c90613362565b60405180910390fd5b80600b6000828254610ab791906132c0565b92505081905550610ac83382611b29565b50565b6000610ad5611b47565b6001546000540303905090565b600c60009054906101000a900460ff1681565b610b00838383611b4c565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a906133ce565b60405180910390fd5b600280811115610b8657610b85612e38565b5b600c60019054906101000a900460ff166002811115610ba857610ba7612e38565b5b14610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf9061343a565b60405180910390fd5b600881600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c3591906132c0565b1115610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d906134a6565b60405180910390fd5b610bb881610c82610acb565b610c8c91906132c0565b1115610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490613512565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d1c91906132c0565b92505081905550610d2d3382611b29565b50565b610d38611b21565b73ffffffffffffffffffffffffffffffffffffffff16610d5661101d565b73ffffffffffffffffffffffffffffffffffffffff1614610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da390613271565b60405180910390fd5b8181600a9182610dbd9291906136e9565b505050565b610bb881565b610de38383836040518060200160405280600081525061128a565b505050565b600b5481565b600e6020528060005260406000206000915090505481565b6000610e1182611a4d565b9050919050565b600881565b610e25611b21565b73ffffffffffffffffffffffffffffffffffffffff16610e4361101d565b73ffffffffffffffffffffffffffffffffffffffff1614610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090613271565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f44576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f9d611b21565b73ffffffffffffffffffffffffffffffffffffffff16610fbb61101d565b73ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890613271565b60405180910390fd5b61101b6000611ef3565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611056906131f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611082906131f4565b80156110cf5780601f106110a4576101008083540402835291602001916110cf565b820191906000526020600020905b8154815290600101906020018083116110b257829003601f168201915b5050505050905090565b600f6020528060005260406000206000915090505481565b60c881565b6110fe611b19565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611162576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061116f611b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661121c611b19565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112619190612a6f565b60405180910390a35050565b600881565b600c60019054906101000a900460ff1681565b600281565b611295848484611b4c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112f7576112c084848484611fb9565b6112f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611305611b21565b73ffffffffffffffffffffffffffffffffffffffff1661132361101d565b73ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137090613271565b60405180910390fd5b80600c60016101000a81548160ff0219169083600281111561139e5761139d612e38565b5b021790555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b906133ce565b60405180910390fd5b6001600281111561142857611427612e38565b5b600c60019054906101000a900460ff16600281111561144a57611449612e38565b5b1461148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190613805565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114cd8383612109565b73ffffffffffffffffffffffffffffffffffffffff1614611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a90613871565b60405180910390fd5b600c60009054906101000a900460ff161561162157600283600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461158591906132c0565b11156115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd906138dd565b60405180910390fd5b82600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461161591906132c0565b925050819055506116b0565b600883600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461166e91906132c0565b11156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a690613949565b60405180910390fd5b5b82600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ff91906132c0565b925050819055506117103384611b29565b505050565b6060611720826119ee565b61175f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611756906139b5565b60405180910390fd5b600060018361176e91906132c0565b9050600a61177b826121a9565b60405160200161178c929190613ae0565b604051602081830303815290604052915050919050565b6117ab611b21565b73ffffffffffffffffffffffffffffffffffffffff166117c961101d565b73ffffffffffffffffffffffffffffffffffffffff161461181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690613271565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118e7611b21565b73ffffffffffffffffffffffffffffffffffffffff1661190561101d565b73ffffffffffffffffffffffffffffffffffffffff161461195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290613271565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190613b81565b60405180910390fd5b6119d381611ef3565b50565b600d6020528060005260406000206000915090505481565b6000816119f9611b47565b11158015611a08575060005482105b8015611a46575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611a5c611b47565b11611ae257600054811015611ae15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611adf575b60008103611ad5576004600083600190039350838152602001908152602001600020549050611aab565b8092505050611b14565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b611b43828260405180602001604052806000815250612309565b5050565b600090565b6000611b5782611a4d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611bbe576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611bdf611b19565b73ffffffffffffffffffffffffffffffffffffffff161480611c0e5750611c0d85611c08611b19565b61184b565b5b80611c535750611c1c611b19565b73ffffffffffffffffffffffffffffffffffffffff16611c3b846107b6565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c8c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611cf2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cff85858560016125bc565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611dfc866125c2565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611e845760006001840190506000600460008381526020019081526020016000205403611e82576000548114611e81578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eec85858560016125cc565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fdf611b19565b8786866040518563ffffffff1660e01b81526004016120019493929190613bf6565b6020604051808303816000875af192505050801561203d57506040513d601f19601f8201168201806040525081019061203a9190613c57565b60015b6120b6573d806000811461206d576040519150601f19603f3d011682016040523d82523d6000602084013e612072565b606091505b5060008151036120ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60006121a183838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050503373ffffffffffffffffffffffffffffffffffffffff1660001b60405160200161217d9190613cfb565b604051602081830303815290604052805190602001206125d290919063ffffffff16565b905092915050565b6060600082036121f0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612304565b600082905060005b6000821461222257808061220b90613d21565b915050600a8261221b9190613d98565b91506121f8565b60008167ffffffffffffffff81111561223e5761223d612ecf565b5b6040519080825280601f01601f1916602001820160405280156122705781602001600182028036833780820191505090505b5090505b600085146122fd576001826122899190613dc9565b9150600a856122989190613dfd565b60306122a491906132c0565b60f81b8183815181106122ba576122b9613e2e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122f69190613d98565b9450612274565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612375576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036123af576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123bc60008583866125bc565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612421600185146125f9565b901b60a042901b612431866125c2565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612535575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e56000878480600101955087611fb9565b61251b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061247657826000541461253057600080fd5b6125a0565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612536575b8160008190555050506125b660008583866125cc565b50505050565b50505050565b6000819050919050565b50505050565b60008060006125e18585612603565b915091506125ee81612684565b819250505092915050565b6000819050919050565b60008060418351036126445760008060006020860151925060408601519150606086015160001a905061263887828585612850565b9450945050505061267d565b604083510361267457600080602085015191506040850151905061266986838361295c565b93509350505061267d565b60006002915091505b9250929050565b6000600481111561269857612697612e38565b5b8160048111156126ab576126aa612e38565b5b031561284d57600160048111156126c5576126c4612e38565b5b8160048111156126d8576126d7612e38565b5b03612718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270f90613ea9565b60405180910390fd5b6002600481111561272c5761272b612e38565b5b81600481111561273f5761273e612e38565b5b0361277f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277690613f15565b60405180910390fd5b6003600481111561279357612792612e38565b5b8160048111156127a6576127a5612e38565b5b036127e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dd90613fa7565b60405180910390fd5b6004808111156127f9576127f8612e38565b5b81600481111561280c5761280b612e38565b5b0361284c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284390614039565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561288b576000600391509150612953565b601b8560ff16141580156128a35750601c8560ff1614155b156128b5576000600491509150612953565b6000600187878787604051600081526020016040526040516128da9493929190614084565b6020604051602081039080840390855afa1580156128fc573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361294a57600060019250925050612953565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c61299f91906132c0565b90506129ad87828885612850565b935093505050935093915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a04816129cf565b8114612a0f57600080fd5b50565b600081359050612a21816129fb565b92915050565b600060208284031215612a3d57612a3c6129c5565b5b6000612a4b84828501612a12565b91505092915050565b60008115159050919050565b612a6981612a54565b82525050565b6000602082019050612a846000830184612a60565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ac4578082015181840152602081019050612aa9565b83811115612ad3576000848401525b50505050565b6000601f19601f8301169050919050565b6000612af582612a8a565b612aff8185612a95565b9350612b0f818560208601612aa6565b612b1881612ad9565b840191505092915050565b60006020820190508181036000830152612b3d8184612aea565b905092915050565b6000819050919050565b612b5881612b45565b8114612b6357600080fd5b50565b600081359050612b7581612b4f565b92915050565b600060208284031215612b9157612b906129c5565b5b6000612b9f84828501612b66565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bd382612ba8565b9050919050565b612be381612bc8565b82525050565b6000602082019050612bfe6000830184612bda565b92915050565b612c0d81612bc8565b8114612c1857600080fd5b50565b600081359050612c2a81612c04565b92915050565b60008060408385031215612c4757612c466129c5565b5b6000612c5585828601612c1b565b9250506020612c6685828601612b66565b9150509250929050565b612c7981612b45565b82525050565b6000602082019050612c946000830184612c70565b92915050565b600080600060608486031215612cb357612cb26129c5565b5b6000612cc186828701612c1b565b9350506020612cd286828701612c1b565b9250506040612ce386828701612b66565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612d1257612d11612ced565b5b8235905067ffffffffffffffff811115612d2f57612d2e612cf2565b5b602083019150836001820283011115612d4b57612d4a612cf7565b5b9250929050565b60008060208385031215612d6957612d686129c5565b5b600083013567ffffffffffffffff811115612d8757612d866129ca565b5b612d9385828601612cfc565b92509250509250929050565b600060208284031215612db557612db46129c5565b5b6000612dc384828501612c1b565b91505092915050565b612dd581612a54565b8114612de057600080fd5b50565b600081359050612df281612dcc565b92915050565b60008060408385031215612e0f57612e0e6129c5565b5b6000612e1d85828601612c1b565b9250506020612e2e85828601612de3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110612e7857612e77612e38565b5b50565b6000819050612e8982612e67565b919050565b6000612e9982612e7b565b9050919050565b612ea981612e8e565b82525050565b6000602082019050612ec46000830184612ea0565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f0782612ad9565b810181811067ffffffffffffffff82111715612f2657612f25612ecf565b5b80604052505050565b6000612f396129bb565b9050612f458282612efe565b919050565b600067ffffffffffffffff821115612f6557612f64612ecf565b5b612f6e82612ad9565b9050602081019050919050565b82818337600083830152505050565b6000612f9d612f9884612f4a565b612f2f565b905082815260208101848484011115612fb957612fb8612eca565b5b612fc4848285612f7b565b509392505050565b600082601f830112612fe157612fe0612ced565b5b8135612ff1848260208601612f8a565b91505092915050565b60008060008060808587031215613014576130136129c5565b5b600061302287828801612c1b565b945050602061303387828801612c1b565b935050604061304487828801612b66565b925050606085013567ffffffffffffffff811115613065576130646129ca565b5b61307187828801612fcc565b91505092959194509250565b6003811061308a57600080fd5b50565b60008135905061309c8161307d565b92915050565b6000602082840312156130b8576130b76129c5565b5b60006130c68482850161308d565b91505092915050565b60008083601f8401126130e5576130e4612ced565b5b8235905067ffffffffffffffff81111561310257613101612cf2565b5b60208301915083600182028301111561311e5761311d612cf7565b5b9250929050565b60008060006040848603121561313e5761313d6129c5565b5b600061314c86828701612b66565b935050602084013567ffffffffffffffff81111561316d5761316c6129ca565b5b613179868287016130cf565b92509250509250925092565b6000806040838503121561319c5761319b6129c5565b5b60006131aa85828601612c1b565b92505060206131bb85828601612c1b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061320c57607f821691505b60208210810361321f5761321e6131c5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061325b602083612a95565b915061326682613225565b602082019050919050565b6000602082019050818103600083015261328a8161324e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132cb82612b45565b91506132d683612b45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330b5761330a613291565b5b828201905092915050565b7f457863656564207265736572766520737570706c790000000000000000000000600082015250565b600061334c601583612a95565b915061335782613316565b602082019050919050565b6000602082019050818103600083015261337b8161333f565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006133b8601e83612a95565b91506133c382613382565b602082019050919050565b600060208201905081810360008301526133e7816133ab565b9050919050565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b6000613424601b83612a95565b915061342f826133ee565b602082019050919050565b6000602082019050818103600083015261345381613417565b9050919050565b7f457863656564206d696e74206c696d6974000000000000000000000000000000600082015250565b6000613490601183612a95565b915061349b8261345a565b602082019050919050565b600060208201905081810360008301526134bf81613483565b9050919050565b7f5265616368206d617820737570706c7900000000000000000000000000000000600082015250565b60006134fc601083612a95565b9150613507826134c6565b602082019050919050565b6000602082019050818103600083015261352b816134ef565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261359f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613562565b6135a98683613562565b95508019841693508086168417925050509392505050565b6000819050919050565b60006135e66135e16135dc84612b45565b6135c1565b612b45565b9050919050565b6000819050919050565b613600836135cb565b61361461360c826135ed565b84845461356f565b825550505050565b600090565b61362961361c565b6136348184846135f7565b505050565b5b818110156136585761364d600082613621565b60018101905061363a565b5050565b601f82111561369d5761366e8161353d565b61367784613552565b81016020851015613686578190505b61369a61369285613552565b830182613639565b50505b505050565b600082821c905092915050565b60006136c0600019846008026136a2565b1980831691505092915050565b60006136d983836136af565b9150826002028217905092915050565b6136f38383613532565b67ffffffffffffffff81111561370c5761370b612ecf565b5b61371682546131f4565b61372182828561365c565b6000601f831160018114613750576000841561373e578287013590505b61374885826136cd565b8655506137b0565b601f19841661375e8661353d565b60005b8281101561378657848901358255600182019150602085019450602081019050613761565b868310156137a3578489013561379f601f8916826136af565b8355505b6001600288020188555050505b50505050505050565b7f416c6c6f776c6973742073616c65206973206e6f742061637469766500000000600082015250565b60006137ef601c83612a95565b91506137fa826137b9565b602082019050919050565b6000602082019050818103600083015261381e816137e2565b9050919050565b7f4e6f74206f6e20616c6c6f776c69737400000000000000000000000000000000600082015250565b600061385b601083612a95565b915061386682613825565b602082019050919050565b6000602082019050818103600083015261388a8161384e565b9050919050565b7f45786365656420666972737420726f756e64206c696d69740000000000000000600082015250565b60006138c7601883612a95565b91506138d282613891565b602082019050919050565b600060208201905081810360008301526138f6816138ba565b9050919050565b7f45786365656420616c6c6f776c697374206c696d697400000000000000000000600082015250565b6000613933601683612a95565b915061393e826138fd565b602082019050919050565b6000602082019050818103600083015261396281613926565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b600061399f601f83612a95565b91506139aa82613969565b602082019050919050565b600060208201905081810360008301526139ce81613992565b9050919050565b600081905092915050565b600081546139ed816131f4565b6139f781866139d5565b94506001821660008114613a125760018114613a2757613a5a565b60ff1983168652811515820286019350613a5a565b613a308561353d565b60005b83811015613a5257815481890152600182019150602081019050613a33565b838801955050505b50505092915050565b6000613a6e82612a8a565b613a7881856139d5565b9350613a88818560208601612aa6565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613aca6005836139d5565b9150613ad582613a94565b600582019050919050565b6000613aec82856139e0565b9150613af88284613a63565b9150613b0382613abd565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b6b602683612a95565b9150613b7682613b0f565b604082019050919050565b60006020820190508181036000830152613b9a81613b5e565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613bc882613ba1565b613bd28185613bac565b9350613be2818560208601612aa6565b613beb81612ad9565b840191505092915050565b6000608082019050613c0b6000830187612bda565b613c186020830186612bda565b613c256040830185612c70565b8181036060830152613c378184613bbd565b905095945050505050565b600081519050613c51816129fb565b92915050565b600060208284031215613c6d57613c6c6129c5565b5b6000613c7b84828501613c42565b91505092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000613cba601c836139d5565b9150613cc582613c84565b601c82019050919050565b6000819050919050565b6000819050919050565b613cf5613cf082613cd0565b613cda565b82525050565b6000613d0682613cad565b9150613d128284613ce4565b60208201915081905092915050565b6000613d2c82612b45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d5e57613d5d613291565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613da382612b45565b9150613dae83612b45565b925082613dbe57613dbd613d69565b5b828204905092915050565b6000613dd482612b45565b9150613ddf83612b45565b925082821015613df257613df1613291565b5b828203905092915050565b6000613e0882612b45565b9150613e1383612b45565b925082613e2357613e22613d69565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613e93601883612a95565b9150613e9e82613e5d565b602082019050919050565b60006020820190508181036000830152613ec281613e86565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613eff601f83612a95565b9150613f0a82613ec9565b602082019050919050565b60006020820190508181036000830152613f2e81613ef2565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f91602283612a95565b9150613f9c82613f35565b604082019050919050565b60006020820190508181036000830152613fc081613f84565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614023602283612a95565b915061402e82613fc7565b604082019050919050565b6000602082019050818103600083015261405281614016565b9050919050565b61406281613cd0565b82525050565b600060ff82169050919050565b61407e81614068565b82525050565b60006080820190506140996000830187614059565b6140a66020830186614075565b6140b36040830185614059565b6140c06060830184614059565b9594505050505056fea264697066735822122095ffb088318ed08b247a24b1d2647e0441048705fdbc9e2f788201fccaece17a64736f6c634300080f0033

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

000000000000000000000000f6ff4dbae2d50f00d84cdeacba3105e2aa4c618b0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003e68747470733a2f2f74656e7368692d616b756d612e73332e61702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f6d657461646174612f0000

-----Decoded View---------------
Arg [0] : signer (address): 0xF6fF4DBaE2d50F00d84cDeacbA3105E2AA4C618B
Arg [1] : uri (string): https://tenshi-akuma.s3.ap-southeast-1.amazonaws.com/metadata/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000f6ff4dbae2d50f00d84cdeacba3105e2aa4c618b
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 000000000000000000000000000000000000000000000000000000000000003e
Arg [3] : 68747470733a2f2f74656e7368692d616b756d612e73332e61702d736f757468
Arg [4] : 656173742d312e616d617a6f6e6177732e636f6d2f6d657461646174612f0000


Deployed Bytecode Sourcemap

53134:3977:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13073:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18086:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20154:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19614:474;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55566:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12127:315;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53593:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21040:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55102:423;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56696:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53319:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21281:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53556:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53825:52;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17875:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53509:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56454:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13752:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52439:94;;;:::i;:::-;;51788:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18255:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53884:50;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53367:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20430:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53463:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53716:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53411:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21537:396;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56246:88;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54285:809;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56815:293;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56342:104;;;:::i;:::-;;20809:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52688:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53766:52;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13073:615;13158:4;13473:10;13458:25;;:11;:25;;;;:102;;;;13550:10;13535:25;;:11;:25;;;;13458:102;:179;;;;13627:10;13612:25;;:11;:25;;;;13458:179;13438:199;;13073:615;;;:::o;18086:100::-;18140:13;18173:5;18166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18086:100;:::o;20154:204::-;20222:7;20247:16;20255:7;20247;:16::i;:::-;20242:64;;20272:34;;;;;;;;;;;;;;20242:64;20326:15;:24;20342:7;20326:24;;;;;;;;;;;;;;;;;;;;;20319:31;;20154:204;;;:::o;19614:474::-;19687:13;19719:27;19738:7;19719:18;:27::i;:::-;19687:61;;19769:5;19763:11;;:2;:11;;;19759:48;;19783:24;;;;;;;;;;;;;;19759:48;19847:5;19824:28;;:19;:17;:19::i;:::-;:28;;;19820:175;;19872:44;19889:5;19896:19;:17;:19::i;:::-;19872:16;:44::i;:::-;19867:128;;19944:35;;;;;;;;;;;;;;19867:128;19820:175;20034:2;20007:15;:24;20023:7;20007:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20072:7;20068:2;20052:28;;20061:5;20052:28;;;;;;;;;;;;19676:412;19614:474;;:::o;55566:230::-;52019:12;:10;:12::i;:::-;52008:23;;:7;:5;:7::i;:::-;:23;;;52000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53401:3:::1;55660:9;55644:13;;:25;;;;:::i;:::-;:36;;55636:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;55736:9;55719:13;;:26;;;;;;;:::i;:::-;;;;;;;;55756:32;55766:10;55778:9;55756;:32::i;:::-;55566:230:::0;:::o;12127:315::-;12180:7;12408:15;:13;:15::i;:::-;12393:12;;12377:13;;:28;:46;12370:53;;12127:315;:::o;53593:28::-;;;;;;;;;;;;;:::o;21040:170::-;21174:28;21184:4;21190:2;21194:7;21174:9;:28::i;:::-;21040:170;;;:::o;55102:423::-;54212:10;54199:23;;:9;:23;;;54191:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;55191:20:::1;55182:29:::0;::::1;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:29;;;;;;;;:::i;:::-;;;55174:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;53551:1;55292:9;55262:15;:27;55278:10;55262:27;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:58;;55254:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;53356:4;55377:9;55361:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;55353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55465:9;55434:15;:27;55450:10;55434:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;55485:32;55495:10;55507:9;55485;:32::i;:::-;55102:423:::0;:::o;56696:111::-;52019:12;:10;:12::i;:::-;52008:23;;:7;:5;:7::i;:::-;:23;;;52000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56792:7:::1;;56776:13;:23;;;;;;;:::i;:::-;;56696:111:::0;;:::o;53319:41::-;53356:4;53319:41;:::o;21281:185::-;21419:39;21436:4;21442:2;21446:7;21419:39;;;;;;;;;;;;:16;:39::i;:::-;21281:185;;;:::o;53556:28::-;;;;:::o;53825:52::-;;;;;;;;;;;;;;;;;:::o;17875:144::-;17939:7;17982:27;18001:7;17982:18;:27::i;:::-;17959:52;;17875:144;;;:::o;53509:43::-;53551:1;53509:43;:::o;56454:95::-;52019:12;:10;:12::i;:::-;52008:23;;:7;:5;:7::i;:::-;:23;;;52000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56534:7:::1;56520:11;;:21;;;;;;;;;;;;;;;;;;56454:95:::0;:::o;13752:224::-;13816:7;13857:1;13840:19;;:5;:19;;;13836:60;;13868:28;;;;;;;;;;;;;;13836:60;9091:13;13914:18;:25;13933:5;13914:25;;;;;;;;;;;;;;;;:54;13907:61;;13752:224;;;:::o;52439:94::-;52019:12;:10;:12::i;:::-;52008:23;;:7;:5;:7::i;:::-;:23;;;52000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52504:21:::1;52522:1;52504:9;:21::i;:::-;52439:94::o:0;51788:87::-;51834:7;51861:6;;;;;;;;;;;51854:13;;51788:87;:::o;18255:104::-;18311:13;18344:7;18337:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18255:104;:::o;53884:50::-;;;;;;;;;;;;;;;;;:::o;53367:37::-;53401:3;53367:37;:::o;20430:308::-;20541:19;:17;:19::i;:::-;20529:31;;:8;:31;;;20525:61;;20569:17;;;;;;;;;;;;;;20525:61;20651:8;20599:18;:39;20618:19;:17;:19::i;:::-;20599:39;;;;;;;;;;;;;;;:49;20639:8;20599:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20711:8;20675:55;;20690:19;:17;:19::i;:::-;20675:55;;;20721:8;20675:55;;;;;;:::i;:::-;;;;;;;;20430:308;;:::o;53463:39::-;53501:1;53463:39;:::o;53716:41::-;;;;;;;;;;;;;:::o;53411:45::-;53455:1;53411:45;:::o;21537:396::-;21704:28;21714:4;21720:2;21724:7;21704:9;:28::i;:::-;21765:1;21747:2;:14;;;:19;21743:183;;21786:56;21817:4;21823:2;21827:7;21836:5;21786:30;:56::i;:::-;21781:145;;21870:40;;;;;;;;;;;;;;21781:145;21743:183;21537:396;;;;:::o;56246:88::-;52019:12;:10;:12::i;:::-;52008:23;;:7;:5;:7::i;:::-;:23;;;52000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56320:6:::1;56312:5;;:14;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;56246:88:::0;:::o;54285:809::-;54212:10;54199:23;;:9;:23;;;54191:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;54420:17:::1;54411:26;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:26;;;;;;;;:::i;:::-;;;54403:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;54517:11;;;;;;;;;;;54489:39;;:24;54503:9;;54489:13;:24::i;:::-;:39;;;54481:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54566:16;;;;;;;;;;;54562:427;;;53455:1;54657:9;54625:17;:29;54643:10;54625:29;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;:62;;54599:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;54795:9;54762:17;:29;54780:10;54762:29;;;;;;;;;;;;;;;;:42;;;;;;;:::i;:::-;;;;;;;;54562:427;;;53501:1;54895:9;54863:17;:29;54881:10;54863:29;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;:56;;54837:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;54562:427;55034:9;55001:17;:29;55019:10;55001:29;;;;;;;;;;;;;;;;:42;;;;;;;:::i;:::-;;;;;;;;55054:32;55064:10;55076:9;55054;:32::i;:::-;54285:809:::0;;;:::o;56815:293::-;56886:13;56920:17;56928:8;56920:7;:17::i;:::-;56912:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;56986:14;57014:1;57003:8;:12;;;;:::i;:::-;56986:29;;57057:13;57072:17;:6;:15;:17::i;:::-;57040:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57026:74;;;56815:293;;;:::o;56342:104::-;52019:12;:10;:12::i;:::-;52008:23;;:7;:5;:7::i;:::-;:23;;;52000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56422:16:::1;;;;;;;;;;;56421:17;56402:16;;:36;;;;;;;;;;;;;;;;;;56342:104::o:0;20809:164::-;20906:4;20930:18;:25;20949:5;20930:25;;;;;;;;;;;;;;;:35;20956:8;20930:35;;;;;;;;;;;;;;;;;;;;;;;;;20923:42;;20809:164;;;;:::o;52688:192::-;52019:12;:10;:12::i;:::-;52008:23;;:7;:5;:7::i;:::-;:23;;;52000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52797:1:::1;52777:22;;:8;:22;;::::0;52769:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;52853:19;52863:8;52853:9;:19::i;:::-;52688:192:::0;:::o;53766:52::-;;;;;;;;;;;;;;;;;:::o;22188:273::-;22245:4;22301:7;22282:15;:13;:15::i;:::-;:26;;:66;;;;;22335:13;;22325:7;:23;22282:66;:152;;;;;22433:1;9861:8;22386:17;:26;22404:7;22386:26;;;;;;;;;;;;:43;:48;22282:152;22262:172;;22188:273;;;:::o;15390:1129::-;15457:7;15477:12;15492:7;15477:22;;15560:4;15541:15;:13;:15::i;:::-;:23;15537:915;;15594:13;;15587:4;:20;15583:869;;;15632:14;15649:17;:23;15667:4;15649:23;;;;;;;;;;;;15632:40;;15765:1;9861:8;15738:6;:23;:28;15734:699;;16257:113;16274:1;16264:6;:11;16257:113;;16317:17;:25;16335:6;;;;;;;16317:25;;;;;;;;;;;;16308:34;;16257:113;;;16403:6;16396:13;;;;;;15734:699;15609:843;15583:869;15537:915;16480:31;;;;;;;;;;;;;;15390:1129;;;;:::o;36170:105::-;36230:7;36257:10;36250:17;;36170:105;:::o;50576:98::-;50629:7;50656:10;50649:17;;50576:98;:::o;22545:104::-;22614:27;22624:2;22628:8;22614:27;;;;;;;;;;;;:9;:27::i;:::-;22545:104;;:::o;11650:92::-;11706:7;11650:92;:::o;27427:2515::-;27542:27;27572;27591:7;27572:18;:27::i;:::-;27542:57;;27657:4;27616:45;;27632:19;27616:45;;;27612:86;;27670:28;;;;;;;;;;;;;;27612:86;27711:22;27760:4;27737:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27781:43;27798:4;27804:19;:17;:19::i;:::-;27781:16;:43::i;:::-;27737:87;:147;;;;27865:19;:17;:19::i;:::-;27841:43;;:20;27853:7;27841:11;:20::i;:::-;:43;;;27737:147;27711:174;;27903:17;27898:66;;27929:35;;;;;;;;;;;;;;27898:66;27993:1;27979:16;;:2;:16;;;27975:52;;28004:23;;;;;;;;;;;;;;27975:52;28040:43;28062:4;28068:2;28072:7;28081:1;28040:21;:43::i;:::-;28156:15;:24;28172:7;28156:24;;;;;;;;;;;;28149:31;;;;;;;;;;;28548:18;:24;28567:4;28548:24;;;;;;;;;;;;;;;;28546:26;;;;;;;;;;;;28617:18;:22;28636:2;28617:22;;;;;;;;;;;;;;;;28615:24;;;;;;;;;;;10143:8;9745:3;28998:15;:41;;28956:21;28974:2;28956:17;:21::i;:::-;:84;:128;28910:17;:26;28928:7;28910:26;;;;;;;;;;;:174;;;;29254:1;10143:8;29204:19;:46;:51;29200:626;;29276:19;29308:1;29298:7;:11;29276:33;;29465:1;29431:17;:30;29449:11;29431:30;;;;;;;;;;;;:35;29427:384;;29569:13;;29554:11;:28;29550:242;;29749:19;29716:17;:30;29734:11;29716:30;;;;;;;;;;;:52;;;;29550:242;29427:384;29257:569;29200:626;29873:7;29869:2;29854:27;;29863:4;29854:27;;;;;;;;;;;;29892:42;29913:4;29919:2;29923:7;29932:1;29892:20;:42::i;:::-;27531:2411;;27427:2515;;;:::o;52888:173::-;52944:16;52963:6;;;;;;;;;;;52944:25;;52989:8;52980:6;;:17;;;;;;;;;;;;;;;;;;53044:8;53013:40;;53034:8;53013:40;;;;;;;;;;;;52933:128;52888:173;:::o;33639:716::-;33802:4;33848:2;33823:45;;;33869:19;:17;:19::i;:::-;33890:4;33896:7;33905:5;33823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34123:1;34106:6;:13;:18;34102:235;;34152:40;;;;;;;;;;;;;;34102:235;34295:6;34289:13;34280:6;34276:2;34272:15;34265:38;33819:529;33992:54;;;33982:64;;;:6;:64;;;;33975:71;;;33639:716;;;;;;:::o;55845:366::-;55944:7;55989:214;56193:9;;55989:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56137:10;56121:28;;56113:37;;56017:152;;;;;;;;:::i;:::-;;;;;;;;;;;;;55989:195;;;;;;:203;;:214;;;;:::i;:::-;55969:234;;55845:366;;;;:::o;38658:723::-;38714:13;38944:1;38935:5;:10;38931:53;;38962:10;;;;;;;;;;;;;;;;;;;;;38931:53;38994:12;39009:5;38994:20;;39025:14;39050:78;39065:1;39057:4;:9;39050:78;;39083:8;;;;;:::i;:::-;;;;39114:2;39106:10;;;;;:::i;:::-;;;39050:78;;;39138:19;39170:6;39160:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39138:39;;39188:154;39204:1;39195:5;:10;39188:154;;39232:1;39222:11;;;;;:::i;:::-;;;39299:2;39291:5;:10;;;;:::i;:::-;39278:2;:24;;;;:::i;:::-;39265:39;;39248:6;39255;39248:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39328:2;39319:11;;;;;:::i;:::-;;;39188:154;;;39366:6;39352:21;;;;;38658:723;;;;:::o;23022:2236::-;23145:20;23168:13;;23145:36;;23210:1;23196:16;;:2;:16;;;23192:48;;23221:19;;;;;;;;;;;;;;23192:48;23267:1;23255:8;:13;23251:44;;23277:18;;;;;;;;;;;;;;23251:44;23308:61;23338:1;23342:2;23346:12;23360:8;23308:21;:61::i;:::-;23912:1;9228:2;23883:1;:25;;23882:31;23870:8;:44;23844:18;:22;23863:2;23844:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10008:3;24313:29;24340:1;24328:8;:13;24313:14;:29::i;:::-;:56;;9745:3;24250:15;:41;;24208:21;24226:2;24208:17;:21::i;:::-;:84;:162;24157:17;:31;24175:12;24157:31;;;;;;;;;;;:213;;;;24387:20;24410:12;24387:35;;24437:11;24466:8;24451:12;:23;24437:37;;24513:1;24495:2;:14;;;:19;24491:635;;24535:313;24591:12;24587:2;24566:38;;24583:1;24566:38;;;;;;;;;;;;24632:69;24671:1;24675:2;24679:14;;;;;;24695:5;24632:30;:69::i;:::-;24627:174;;24737:40;;;;;;;;;;;;;;24627:174;24843:3;24828:12;:18;24535:313;;24929:12;24912:13;;:29;24908:43;;24943:8;;;24908:43;24491:635;;;24992:119;25048:14;;;;;;25044:2;25023:40;;25040:1;25023:40;;;;;;;;;;;;25106:3;25091:12;:18;24992:119;;24491:635;25156:12;25140:13;:28;;;;23621:1559;;25190:60;25219:1;25223:2;25227:12;25241:8;25190:20;:60::i;:::-;23134:2124;23022:2236;;;:::o;35003:159::-;;;;;:::o;19175:148::-;19239:14;19300:5;19290:15;;19175:148;;;:::o;35821:158::-;;;;;:::o;44834:231::-;44912:7;44933:17;44952:18;44974:27;44985:4;44991:9;44974:10;:27::i;:::-;44932:69;;;;45012:18;45024:5;45012:11;:18::i;:::-;45048:9;45041:16;;;;44834:231;;;;:::o;19410:142::-;19468:14;19529:5;19519:15;;19410:142;;;:::o;42724:1308::-;42805:7;42814:12;43059:2;43039:9;:16;:22;43035:990;;43078:9;43102;43126:7;43335:4;43324:9;43320:20;43314:27;43309:32;;43385:4;43374:9;43370:20;43364:27;43359:32;;43443:4;43432:9;43428:20;43422:27;43419:1;43414:36;43409:41;;43486:25;43497:4;43503:1;43506;43509;43486:10;:25::i;:::-;43479:32;;;;;;;;;43035:990;43553:2;43533:9;:16;:22;43529:496;;43572:9;43596:10;43808:4;43797:9;43793:20;43787:27;43782:32;;43859:4;43848:9;43844:20;43838:27;43832:33;;43901:23;43912:4;43918:1;43921:2;43901:10;:23::i;:::-;43894:30;;;;;;;;43529:496;43973:1;43977:35;43957:56;;;;42724:1308;;;;;;:::o;40995:643::-;41073:20;41064:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;41060:571;41110:7;41060:571;41171:29;41162:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;41158:473;;41217:34;;;;;;;;;;:::i;:::-;;;;;;;;41158:473;41282:35;41273:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;41269:362;;41334:41;;;;;;;;;;:::i;:::-;;;;;;;;41269:362;41406:30;41397:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;41393:238;;41453:44;;;;;;;;;;:::i;:::-;;;;;;;;41393:238;41528:30;41519:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;41515:116;;41575:44;;;;;;;;;;:::i;:::-;;;;;;;;41515:116;40995:643;;:::o;46286:1632::-;46417:7;46426:12;47351:66;47346:1;47338:10;;:79;47334:163;;;47450:1;47454:30;47434:51;;;;;;47334:163;47516:2;47511:1;:7;;;;:18;;;;;47527:2;47522:1;:7;;;;47511:18;47507:102;;;47562:1;47566:30;47546:51;;;;;;47507:102;47706:14;47723:24;47733:4;47739:1;47742;47745;47723:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47706:41;;47780:1;47762:20;;:6;:20;;;47758:103;;47815:1;47819:29;47799:50;;;;;;;47758:103;47881:6;47889:20;47873:37;;;;;46286:1632;;;;;;;;:::o;45328:344::-;45442:7;45451:12;45476:9;45501:66;45493:75;;45488:2;:80;45476:92;;45579:7;45618:2;45611:3;45604:2;45596:11;;:18;;45595:25;;;;:::i;:::-;45579:42;;45639:25;45650:4;45656:1;45659;45662;45639:10;:25::i;:::-;45632:32;;;;;;45328:344;;;;;;:::o;7:75:1:-;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:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:180::-;8510:77;8507:1;8500:88;8607:4;8604:1;8597:15;8631:4;8628:1;8621:15;8648:119;8735:1;8728:5;8725:12;8715:46;;8741:18;;:::i;:::-;8715:46;8648:119;:::o;8773:139::-;8824:7;8853:5;8842:16;;8859:47;8900:5;8859:47;:::i;:::-;8773:139;;;:::o;8918:::-;8980:9;9013:38;9045:5;9013:38;:::i;:::-;9000:51;;8918:139;;;:::o;9063:155::-;9162:49;9205:5;9162:49;:::i;:::-;9157:3;9150:62;9063:155;;:::o;9224:246::-;9329:4;9367:2;9356:9;9352:18;9344:26;;9380:83;9460:1;9449:9;9445:17;9436:6;9380:83;:::i;:::-;9224:246;;;;:::o;9476:117::-;9585:1;9582;9575:12;9599:180;9647:77;9644:1;9637:88;9744:4;9741:1;9734:15;9768:4;9765:1;9758:15;9785:281;9868:27;9890:4;9868:27;:::i;:::-;9860:6;9856:40;9998:6;9986:10;9983:22;9962:18;9950:10;9947:34;9944:62;9941:88;;;10009:18;;:::i;:::-;9941:88;10049:10;10045:2;10038:22;9828:238;9785:281;;:::o;10072:129::-;10106:6;10133:20;;:::i;:::-;10123:30;;10162:33;10190:4;10182:6;10162:33;:::i;:::-;10072:129;;;:::o;10207:307::-;10268:4;10358:18;10350:6;10347:30;10344:56;;;10380:18;;:::i;:::-;10344:56;10418:29;10440:6;10418:29;:::i;:::-;10410:37;;10502:4;10496;10492:15;10484:23;;10207:307;;;:::o;10520:154::-;10604:6;10599:3;10594;10581:30;10666:1;10657:6;10652:3;10648:16;10641:27;10520:154;;;:::o;10680:410::-;10757:5;10782:65;10798:48;10839:6;10798:48;:::i;:::-;10782:65;:::i;:::-;10773:74;;10870:6;10863:5;10856:21;10908:4;10901:5;10897:16;10946:3;10937:6;10932:3;10928:16;10925:25;10922:112;;;10953:79;;:::i;:::-;10922:112;11043:41;11077:6;11072:3;11067;11043:41;:::i;:::-;10763:327;10680:410;;;;;:::o;11109:338::-;11164:5;11213:3;11206:4;11198:6;11194:17;11190:27;11180:122;;11221:79;;:::i;:::-;11180:122;11338:6;11325:20;11363:78;11437:3;11429:6;11422:4;11414:6;11410:17;11363:78;:::i;:::-;11354:87;;11170:277;11109:338;;;;:::o;11453:943::-;11548:6;11556;11564;11572;11621:3;11609:9;11600:7;11596:23;11592:33;11589:120;;;11628:79;;:::i;:::-;11589:120;11748:1;11773:53;11818:7;11809:6;11798:9;11794:22;11773:53;:::i;:::-;11763:63;;11719:117;11875:2;11901:53;11946:7;11937:6;11926:9;11922:22;11901:53;:::i;:::-;11891:63;;11846:118;12003:2;12029:53;12074:7;12065:6;12054:9;12050:22;12029:53;:::i;:::-;12019:63;;11974:118;12159:2;12148:9;12144:18;12131:32;12190:18;12182:6;12179:30;12176:117;;;12212:79;;:::i;:::-;12176:117;12317:62;12371:7;12362:6;12351:9;12347:22;12317:62;:::i;:::-;12307:72;;12102:287;11453:943;;;;;;;:::o;12402:113::-;12489:1;12482:5;12479:12;12469:40;;12505:1;12502;12495:12;12469:40;12402:113;:::o;12521:167::-;12581:5;12619:6;12606:20;12597:29;;12635:47;12676:5;12635:47;:::i;:::-;12521:167;;;;:::o;12694:357::-;12767:6;12816:2;12804:9;12795:7;12791:23;12787:32;12784:119;;;12822:79;;:::i;:::-;12784:119;12942:1;12967:67;13026:7;13017:6;13006:9;13002:22;12967:67;:::i;:::-;12957:77;;12913:131;12694:357;;;;:::o;13070:552::-;13127:8;13137:6;13187:3;13180:4;13172:6;13168:17;13164:27;13154:122;;13195:79;;:::i;:::-;13154:122;13308:6;13295:20;13285:30;;13338:18;13330:6;13327:30;13324:117;;;13360:79;;:::i;:::-;13324:117;13474:4;13466:6;13462:17;13450:29;;13528:3;13520:4;13512:6;13508:17;13498:8;13494:32;13491:41;13488:128;;;13535:79;;:::i;:::-;13488:128;13070:552;;;;;:::o;13628:672::-;13707:6;13715;13723;13772:2;13760:9;13751:7;13747:23;13743:32;13740:119;;;13778:79;;:::i;:::-;13740:119;13898:1;13923:53;13968:7;13959:6;13948:9;13944:22;13923:53;:::i;:::-;13913:63;;13869:117;14053:2;14042:9;14038:18;14025:32;14084:18;14076:6;14073:30;14070:117;;;14106:79;;:::i;:::-;14070:117;14219:64;14275:7;14266:6;14255:9;14251:22;14219:64;:::i;:::-;14201:82;;;;13996:297;13628:672;;;;;:::o;14306:474::-;14374:6;14382;14431:2;14419:9;14410:7;14406:23;14402:32;14399:119;;;14437:79;;:::i;:::-;14399:119;14557:1;14582:53;14627:7;14618:6;14607:9;14603:22;14582:53;:::i;:::-;14572:63;;14528:117;14684:2;14710:53;14755:7;14746:6;14735:9;14731:22;14710:53;:::i;:::-;14700:63;;14655:118;14306:474;;;;;:::o;14786:180::-;14834:77;14831:1;14824:88;14931:4;14928:1;14921:15;14955:4;14952:1;14945:15;14972:320;15016:6;15053:1;15047:4;15043:12;15033:22;;15100:1;15094:4;15090:12;15121:18;15111:81;;15177:4;15169:6;15165:17;15155:27;;15111:81;15239:2;15231:6;15228:14;15208:18;15205:38;15202:84;;15258:18;;:::i;:::-;15202:84;15023:269;14972:320;;;:::o;15298:182::-;15438:34;15434:1;15426:6;15422:14;15415:58;15298:182;:::o;15486:366::-;15628:3;15649:67;15713:2;15708:3;15649:67;:::i;:::-;15642:74;;15725:93;15814:3;15725:93;:::i;:::-;15843:2;15838:3;15834:12;15827:19;;15486:366;;;:::o;15858:419::-;16024:4;16062:2;16051:9;16047:18;16039:26;;16111:9;16105:4;16101:20;16097:1;16086:9;16082:17;16075:47;16139:131;16265:4;16139:131;:::i;:::-;16131:139;;15858:419;;;:::o;16283:180::-;16331:77;16328:1;16321:88;16428:4;16425:1;16418:15;16452:4;16449:1;16442:15;16469:305;16509:3;16528:20;16546:1;16528:20;:::i;:::-;16523:25;;16562:20;16580:1;16562:20;:::i;:::-;16557:25;;16716:1;16648:66;16644:74;16641:1;16638:81;16635:107;;;16722:18;;:::i;:::-;16635:107;16766:1;16763;16759:9;16752:16;;16469:305;;;;:::o;16780:171::-;16920:23;16916:1;16908:6;16904:14;16897:47;16780:171;:::o;16957:366::-;17099:3;17120:67;17184:2;17179:3;17120:67;:::i;:::-;17113:74;;17196:93;17285:3;17196:93;:::i;:::-;17314:2;17309:3;17305:12;17298:19;;16957:366;;;:::o;17329:419::-;17495:4;17533:2;17522:9;17518:18;17510:26;;17582:9;17576:4;17572:20;17568:1;17557:9;17553:17;17546:47;17610:131;17736:4;17610:131;:::i;:::-;17602:139;;17329:419;;;:::o;17754:180::-;17894:32;17890:1;17882:6;17878:14;17871:56;17754:180;:::o;17940:366::-;18082:3;18103:67;18167:2;18162:3;18103:67;:::i;:::-;18096:74;;18179:93;18268:3;18179:93;:::i;:::-;18297:2;18292:3;18288:12;18281:19;;17940:366;;;:::o;18312:419::-;18478:4;18516:2;18505:9;18501:18;18493:26;;18565:9;18559:4;18555:20;18551:1;18540:9;18536:17;18529:47;18593:131;18719:4;18593:131;:::i;:::-;18585:139;;18312:419;;;:::o;18737:177::-;18877:29;18873:1;18865:6;18861:14;18854:53;18737:177;:::o;18920:366::-;19062:3;19083:67;19147:2;19142:3;19083:67;:::i;:::-;19076:74;;19159:93;19248:3;19159:93;:::i;:::-;19277:2;19272:3;19268:12;19261:19;;18920:366;;;:::o;19292:419::-;19458:4;19496:2;19485:9;19481:18;19473:26;;19545:9;19539:4;19535:20;19531:1;19520:9;19516:17;19509:47;19573:131;19699:4;19573:131;:::i;:::-;19565:139;;19292:419;;;:::o;19717:167::-;19857:19;19853:1;19845:6;19841:14;19834:43;19717:167;:::o;19890:366::-;20032:3;20053:67;20117:2;20112:3;20053:67;:::i;:::-;20046:74;;20129:93;20218:3;20129:93;:::i;:::-;20247:2;20242:3;20238:12;20231:19;;19890:366;;;:::o;20262:419::-;20428:4;20466:2;20455:9;20451:18;20443:26;;20515:9;20509:4;20505:20;20501:1;20490:9;20486:17;20479:47;20543:131;20669:4;20543:131;:::i;:::-;20535:139;;20262:419;;;:::o;20687:166::-;20827:18;20823:1;20815:6;20811:14;20804:42;20687:166;:::o;20859:366::-;21001:3;21022:67;21086:2;21081:3;21022:67;:::i;:::-;21015:74;;21098:93;21187:3;21098:93;:::i;:::-;21216:2;21211:3;21207:12;21200:19;;20859:366;;;:::o;21231:419::-;21397:4;21435:2;21424:9;21420:18;21412:26;;21484:9;21478:4;21474:20;21470:1;21459:9;21455:17;21448:47;21512:131;21638:4;21512:131;:::i;:::-;21504:139;;21231:419;;;:::o;21656:97::-;21715:6;21743:3;21733:13;;21656:97;;;;:::o;21759:141::-;21808:4;21831:3;21823:11;;21854:3;21851:1;21844:14;21888:4;21885:1;21875:18;21867:26;;21759:141;;;:::o;21906:93::-;21943:6;21990:2;21985;21978:5;21974:14;21970:23;21960:33;;21906:93;;;:::o;22005:107::-;22049:8;22099:5;22093:4;22089:16;22068:37;;22005:107;;;;:::o;22118:393::-;22187:6;22237:1;22225:10;22221:18;22260:97;22290:66;22279:9;22260:97;:::i;:::-;22378:39;22408:8;22397:9;22378:39;:::i;:::-;22366:51;;22450:4;22446:9;22439:5;22435:21;22426:30;;22499:4;22489:8;22485:19;22478:5;22475:30;22465:40;;22194:317;;22118:393;;;;;:::o;22517:60::-;22545:3;22566:5;22559:12;;22517:60;;;:::o;22583:142::-;22633:9;22666:53;22684:34;22693:24;22711:5;22693:24;:::i;:::-;22684:34;:::i;:::-;22666:53;:::i;:::-;22653:66;;22583:142;;;:::o;22731:75::-;22774:3;22795:5;22788:12;;22731:75;;;:::o;22812:269::-;22922:39;22953:7;22922:39;:::i;:::-;22983:91;23032:41;23056:16;23032:41;:::i;:::-;23024:6;23017:4;23011:11;22983:91;:::i;:::-;22977:4;22970:105;22888:193;22812:269;;;:::o;23087:73::-;23132:3;23087:73;:::o;23166:189::-;23243:32;;:::i;:::-;23284:65;23342:6;23334;23328:4;23284:65;:::i;:::-;23219:136;23166:189;;:::o;23361:186::-;23421:120;23438:3;23431:5;23428:14;23421:120;;;23492:39;23529:1;23522:5;23492:39;:::i;:::-;23465:1;23458:5;23454:13;23445:22;;23421:120;;;23361:186;;:::o;23553:543::-;23654:2;23649:3;23646:11;23643:446;;;23688:38;23720:5;23688:38;:::i;:::-;23772:29;23790:10;23772:29;:::i;:::-;23762:8;23758:44;23955:2;23943:10;23940:18;23937:49;;;23976:8;23961:23;;23937:49;23999:80;24055:22;24073:3;24055:22;:::i;:::-;24045:8;24041:37;24028:11;23999:80;:::i;:::-;23658:431;;23643:446;23553:543;;;:::o;24102:117::-;24156:8;24206:5;24200:4;24196:16;24175:37;;24102:117;;;;:::o;24225:169::-;24269:6;24302:51;24350:1;24346:6;24338:5;24335:1;24331:13;24302:51;:::i;:::-;24298:56;24383:4;24377;24373:15;24363:25;;24276:118;24225:169;;;;:::o;24399:295::-;24475:4;24621:29;24646:3;24640:4;24621:29;:::i;:::-;24613:37;;24683:3;24680:1;24676:11;24670:4;24667:21;24659:29;;24399:295;;;;:::o;24699:1403::-;24823:44;24863:3;24858;24823:44;:::i;:::-;24932:18;24924:6;24921:30;24918:56;;;24954:18;;:::i;:::-;24918:56;24998:38;25030:4;25024:11;24998:38;:::i;:::-;25083:67;25143:6;25135;25129:4;25083:67;:::i;:::-;25177:1;25206:2;25198:6;25195:14;25223:1;25218:632;;;;25894:1;25911:6;25908:84;;;25967:9;25962:3;25958:19;25945:33;25936:42;;25908:84;26018:67;26078:6;26071:5;26018:67;:::i;:::-;26012:4;26005:81;25867:229;25188:908;;25218:632;25270:4;25266:9;25258:6;25254:22;25304:37;25336:4;25304:37;:::i;:::-;25363:1;25377:215;25391:7;25388:1;25385:14;25377:215;;;25477:9;25472:3;25468:19;25455:33;25447:6;25440:49;25528:1;25520:6;25516:14;25506:24;;25575:2;25564:9;25560:18;25547:31;;25414:4;25411:1;25407:12;25402:17;;25377:215;;;25620:6;25611:7;25608:19;25605:186;;;25685:9;25680:3;25676:19;25663:33;25728:48;25770:4;25762:6;25758:17;25747:9;25728:48;:::i;:::-;25720:6;25713:64;25628:163;25605:186;25837:1;25833;25825:6;25821:14;25817:22;25811:4;25804:36;25225:625;;;25188:908;;24798:1304;;;24699:1403;;;:::o;26108:178::-;26248:30;26244:1;26236:6;26232:14;26225:54;26108:178;:::o;26292:366::-;26434:3;26455:67;26519:2;26514:3;26455:67;:::i;:::-;26448:74;;26531:93;26620:3;26531:93;:::i;:::-;26649:2;26644:3;26640:12;26633:19;;26292:366;;;:::o;26664:419::-;26830:4;26868:2;26857:9;26853:18;26845:26;;26917:9;26911:4;26907:20;26903:1;26892:9;26888:17;26881:47;26945:131;27071:4;26945:131;:::i;:::-;26937:139;;26664:419;;;:::o;27089:166::-;27229:18;27225:1;27217:6;27213:14;27206:42;27089:166;:::o;27261:366::-;27403:3;27424:67;27488:2;27483:3;27424:67;:::i;:::-;27417:74;;27500:93;27589:3;27500:93;:::i;:::-;27618:2;27613:3;27609:12;27602:19;;27261:366;;;:::o;27633:419::-;27799:4;27837:2;27826:9;27822:18;27814:26;;27886:9;27880:4;27876:20;27872:1;27861:9;27857:17;27850:47;27914:131;28040:4;27914:131;:::i;:::-;27906:139;;27633:419;;;:::o;28058:174::-;28198:26;28194:1;28186:6;28182:14;28175:50;28058:174;:::o;28238:366::-;28380:3;28401:67;28465:2;28460:3;28401:67;:::i;:::-;28394:74;;28477:93;28566:3;28477:93;:::i;:::-;28595:2;28590:3;28586:12;28579:19;;28238:366;;;:::o;28610:419::-;28776:4;28814:2;28803:9;28799:18;28791:26;;28863:9;28857:4;28853:20;28849:1;28838:9;28834:17;28827:47;28891:131;29017:4;28891:131;:::i;:::-;28883:139;;28610:419;;;:::o;29035:172::-;29175:24;29171:1;29163:6;29159:14;29152:48;29035:172;:::o;29213:366::-;29355:3;29376:67;29440:2;29435:3;29376:67;:::i;:::-;29369:74;;29452:93;29541:3;29452:93;:::i;:::-;29570:2;29565:3;29561:12;29554:19;;29213:366;;;:::o;29585:419::-;29751:4;29789:2;29778:9;29774:18;29766:26;;29838:9;29832:4;29828:20;29824:1;29813:9;29809:17;29802:47;29866:131;29992:4;29866:131;:::i;:::-;29858:139;;29585:419;;;:::o;30010:181::-;30150:33;30146:1;30138:6;30134:14;30127:57;30010:181;:::o;30197:366::-;30339:3;30360:67;30424:2;30419:3;30360:67;:::i;:::-;30353:74;;30436:93;30525:3;30436:93;:::i;:::-;30554:2;30549:3;30545:12;30538:19;;30197:366;;;:::o;30569:419::-;30735:4;30773:2;30762:9;30758:18;30750:26;;30822:9;30816:4;30812:20;30808:1;30797:9;30793:17;30786:47;30850:131;30976:4;30850:131;:::i;:::-;30842:139;;30569:419;;;:::o;30994:148::-;31096:11;31133:3;31118:18;;30994:148;;;;:::o;31172:874::-;31275:3;31312:5;31306:12;31341:36;31367:9;31341:36;:::i;:::-;31393:89;31475:6;31470:3;31393:89;:::i;:::-;31386:96;;31513:1;31502:9;31498:17;31529:1;31524:166;;;;31704:1;31699:341;;;;31491:549;;31524:166;31608:4;31604:9;31593;31589:25;31584:3;31577:38;31670:6;31663:14;31656:22;31648:6;31644:35;31639:3;31635:45;31628:52;;31524:166;;31699:341;31766:38;31798:5;31766:38;:::i;:::-;31826:1;31840:154;31854:6;31851:1;31848:13;31840:154;;;31928:7;31922:14;31918:1;31913:3;31909:11;31902:35;31978:1;31969:7;31965:15;31954:26;;31876:4;31873:1;31869:12;31864:17;;31840:154;;;32023:6;32018:3;32014:16;32007:23;;31706:334;;31491:549;;31279:767;;31172:874;;;;:::o;32052:377::-;32158:3;32186:39;32219:5;32186:39;:::i;:::-;32241:89;32323:6;32318:3;32241:89;:::i;:::-;32234:96;;32339:52;32384:6;32379:3;32372:4;32365:5;32361:16;32339:52;:::i;:::-;32416:6;32411:3;32407:16;32400:23;;32162:267;32052:377;;;;:::o;32435:155::-;32575:7;32571:1;32563:6;32559:14;32552:31;32435:155;:::o;32596:400::-;32756:3;32777:84;32859:1;32854:3;32777:84;:::i;:::-;32770:91;;32870:93;32959:3;32870:93;:::i;:::-;32988:1;32983:3;32979:11;32972:18;;32596:400;;;:::o;33002:695::-;33280:3;33302:92;33390:3;33381:6;33302:92;:::i;:::-;33295:99;;33411:95;33502:3;33493:6;33411:95;:::i;:::-;33404:102;;33523:148;33667:3;33523:148;:::i;:::-;33516:155;;33688:3;33681:10;;33002:695;;;;;:::o;33703:225::-;33843:34;33839:1;33831:6;33827:14;33820:58;33912:8;33907:2;33899:6;33895:15;33888:33;33703:225;:::o;33934:366::-;34076:3;34097:67;34161:2;34156:3;34097:67;:::i;:::-;34090:74;;34173:93;34262:3;34173:93;:::i;:::-;34291:2;34286:3;34282:12;34275:19;;33934:366;;;:::o;34306:419::-;34472:4;34510:2;34499:9;34495:18;34487:26;;34559:9;34553:4;34549:20;34545:1;34534:9;34530:17;34523:47;34587:131;34713:4;34587:131;:::i;:::-;34579:139;;34306:419;;;:::o;34731:98::-;34782:6;34816:5;34810:12;34800:22;;34731:98;;;:::o;34835:168::-;34918:11;34952:6;34947:3;34940:19;34992:4;34987:3;34983:14;34968:29;;34835:168;;;;:::o;35009:360::-;35095:3;35123:38;35155:5;35123:38;:::i;:::-;35177:70;35240:6;35235:3;35177:70;:::i;:::-;35170:77;;35256:52;35301:6;35296:3;35289:4;35282:5;35278:16;35256:52;:::i;:::-;35333:29;35355:6;35333:29;:::i;:::-;35328:3;35324:39;35317:46;;35099:270;35009:360;;;;:::o;35375:640::-;35570:4;35608:3;35597:9;35593:19;35585:27;;35622:71;35690:1;35679:9;35675:17;35666:6;35622:71;:::i;:::-;35703:72;35771:2;35760:9;35756:18;35747:6;35703:72;:::i;:::-;35785;35853:2;35842:9;35838:18;35829:6;35785:72;:::i;:::-;35904:9;35898:4;35894:20;35889:2;35878:9;35874:18;35867:48;35932:76;36003:4;35994:6;35932:76;:::i;:::-;35924:84;;35375:640;;;;;;;:::o;36021:141::-;36077:5;36108:6;36102:13;36093:22;;36124:32;36150:5;36124:32;:::i;:::-;36021:141;;;;:::o;36168:349::-;36237:6;36286:2;36274:9;36265:7;36261:23;36257:32;36254:119;;;36292:79;;:::i;:::-;36254:119;36412:1;36437:63;36492:7;36483:6;36472:9;36468:22;36437:63;:::i;:::-;36427:73;;36383:127;36168:349;;;;:::o;36523:214::-;36663:66;36659:1;36651:6;36647:14;36640:90;36523:214;:::o;36743:402::-;36903:3;36924:85;37006:2;37001:3;36924:85;:::i;:::-;36917:92;;37018:93;37107:3;37018:93;:::i;:::-;37136:2;37131:3;37127:12;37120:19;;36743:402;;;:::o;37151:77::-;37188:7;37217:5;37206:16;;37151:77;;;:::o;37234:79::-;37273:7;37302:5;37291:16;;37234:79;;;:::o;37319:157::-;37424:45;37444:24;37462:5;37444:24;:::i;:::-;37424:45;:::i;:::-;37419:3;37412:58;37319:157;;:::o;37482:522::-;37695:3;37717:148;37861:3;37717:148;:::i;:::-;37710:155;;37875:75;37946:3;37937:6;37875:75;:::i;:::-;37975:2;37970:3;37966:12;37959:19;;37995:3;37988:10;;37482:522;;;;:::o;38010:233::-;38049:3;38072:24;38090:5;38072:24;:::i;:::-;38063:33;;38118:66;38111:5;38108:77;38105:103;;38188:18;;:::i;:::-;38105:103;38235:1;38228:5;38224:13;38217:20;;38010:233;;;:::o;38249:180::-;38297:77;38294:1;38287:88;38394:4;38391:1;38384:15;38418:4;38415:1;38408:15;38435:185;38475:1;38492:20;38510:1;38492:20;:::i;:::-;38487:25;;38526:20;38544:1;38526:20;:::i;:::-;38521:25;;38565:1;38555:35;;38570:18;;:::i;:::-;38555:35;38612:1;38609;38605:9;38600:14;;38435:185;;;;:::o;38626:191::-;38666:4;38686:20;38704:1;38686:20;:::i;:::-;38681:25;;38720:20;38738:1;38720:20;:::i;:::-;38715:25;;38759:1;38756;38753:8;38750:34;;;38764:18;;:::i;:::-;38750:34;38809:1;38806;38802:9;38794:17;;38626:191;;;;:::o;38823:176::-;38855:1;38872:20;38890:1;38872:20;:::i;:::-;38867:25;;38906:20;38924:1;38906:20;:::i;:::-;38901:25;;38945:1;38935:35;;38950:18;;:::i;:::-;38935:35;38991:1;38988;38984:9;38979:14;;38823:176;;;;:::o;39005:180::-;39053:77;39050:1;39043:88;39150:4;39147:1;39140:15;39174:4;39171:1;39164:15;39191:174;39331:26;39327:1;39319:6;39315:14;39308:50;39191:174;:::o;39371:366::-;39513:3;39534:67;39598:2;39593:3;39534:67;:::i;:::-;39527:74;;39610:93;39699:3;39610:93;:::i;:::-;39728:2;39723:3;39719:12;39712:19;;39371:366;;;:::o;39743:419::-;39909:4;39947:2;39936:9;39932:18;39924:26;;39996:9;39990:4;39986:20;39982:1;39971:9;39967:17;39960:47;40024:131;40150:4;40024:131;:::i;:::-;40016:139;;39743:419;;;:::o;40168:181::-;40308:33;40304:1;40296:6;40292:14;40285:57;40168:181;:::o;40355:366::-;40497:3;40518:67;40582:2;40577:3;40518:67;:::i;:::-;40511:74;;40594:93;40683:3;40594:93;:::i;:::-;40712:2;40707:3;40703:12;40696:19;;40355:366;;;:::o;40727:419::-;40893:4;40931:2;40920:9;40916:18;40908:26;;40980:9;40974:4;40970:20;40966:1;40955:9;40951:17;40944:47;41008:131;41134:4;41008:131;:::i;:::-;41000:139;;40727:419;;;:::o;41152:221::-;41292:34;41288:1;41280:6;41276:14;41269:58;41361:4;41356:2;41348:6;41344:15;41337:29;41152:221;:::o;41379:366::-;41521:3;41542:67;41606:2;41601:3;41542:67;:::i;:::-;41535:74;;41618:93;41707:3;41618:93;:::i;:::-;41736:2;41731:3;41727:12;41720:19;;41379:366;;;:::o;41751:419::-;41917:4;41955:2;41944:9;41940:18;41932:26;;42004:9;41998:4;41994:20;41990:1;41979:9;41975:17;41968:47;42032:131;42158:4;42032:131;:::i;:::-;42024:139;;41751:419;;;:::o;42176:221::-;42316:34;42312:1;42304:6;42300:14;42293:58;42385:4;42380:2;42372:6;42368:15;42361:29;42176:221;:::o;42403:366::-;42545:3;42566:67;42630:2;42625:3;42566:67;:::i;:::-;42559:74;;42642:93;42731:3;42642:93;:::i;:::-;42760:2;42755:3;42751:12;42744:19;;42403:366;;;:::o;42775:419::-;42941:4;42979:2;42968:9;42964:18;42956:26;;43028:9;43022:4;43018:20;43014:1;43003:9;42999:17;42992:47;43056:131;43182:4;43056:131;:::i;:::-;43048:139;;42775:419;;;:::o;43200:118::-;43287:24;43305:5;43287:24;:::i;:::-;43282:3;43275:37;43200:118;;:::o;43324:86::-;43359:7;43399:4;43392:5;43388:16;43377:27;;43324:86;;;:::o;43416:112::-;43499:22;43515:5;43499:22;:::i;:::-;43494:3;43487:35;43416:112;;:::o;43534:545::-;43707:4;43745:3;43734:9;43730:19;43722:27;;43759:71;43827:1;43816:9;43812:17;43803:6;43759:71;:::i;:::-;43840:68;43904:2;43893:9;43889:18;43880:6;43840:68;:::i;:::-;43918:72;43986:2;43975:9;43971:18;43962:6;43918:72;:::i;:::-;44000;44068:2;44057:9;44053:18;44044:6;44000:72;:::i;:::-;43534:545;;;;;;;:::o

Swarm Source

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