ETH Price: $3,459.90 (+2.12%)
Gas: 9 Gwei

Token

FOURIMMORTALS (FI)
 

Overview

Max Total Supply

10,000 FI

Holders

8,860

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FI
0x4b6a535dfbbd7bc4618f002cd5441602f6004896
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Four Immortals is a collection of 10000 NFTs which evolves around story and a community-driven project.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FILABIO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-15
*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/filabio2freemint.sol

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




contract FILABIO is Ownable, ERC721A {
    uint256 constant public maxSupply = 10000;
    // max mint limit
    uint256 public mintLimit = 0;
    uint256 public stepOne = 0;
    uint256 public stepTwo = 0;
    uint256 public stepThree = 0;
    string public revealedURI = "ipfs:// ----IFPS---/";
    bool public paused = true;
    mapping(address => uint256) public mintedWallets;

    uint256 MAX_MINT = 25;

    uint256 public publicPrice = 0.003 ether;

    bool private _isRevealed = true;
    string private _baseTokenUri;
    string public notRevealedURI;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _revealedURI
    ) ERC721A(_name, _symbol) {
        revealedURI = _revealedURI;
        _safeMint(msg.sender, 200);
    }

    function smint(uint256 quantity) external payable onlyOwner {
         _safeMint(msg.sender, quantity);
    }

    function doAirdrop(address[] memory dests, uint256[] memory values) external onlyOwner {
        for (uint256 i = 0; i < dests.length; i++) {
            safeTransferFrom(msg.sender, dests[i], values[i]);
        }
    }

    function fimint(uint256 quantity) external payable mintCompliance(quantity) {
        require(maxSupply > totalSupply(), "sold out");
        uint256 currMints = mintedWallets[msg.sender];
        require(currMints + quantity <= MAX_MINT, "u wanna mint too many");
        
        // freemint
        if (currMints == 0) {
            require(quantity == 1, "fist mint only can be freemint 1 nft");
            uint256 price = 0;
            require(msg.value >= checkPrice(price, quantity), "Value below price, need to pay more");

            refundIfOver(price);
            mintedWallets[msg.sender] = quantity;
            _safeMint(msg.sender, quantity);
        } else {
            // public mint
            uint256 price = uint256(publicPrice);
         
            require(msg.value >= checkPrice(price, quantity), "Value below price, need to pay more");
            refundIfOver(price*quantity);
            mintedWallets[msg.sender] = (currMints + quantity);
            _safeMint(msg.sender, quantity);
        }
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function checkPrice(uint256 _price, uint _count) public pure returns (uint256) {
        return _price * _count;
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function revealCollection() public onlyOwner{
      _isRevealed = true;
    }

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

    function setBaseUri(string memory _baseUri) external onlyOwner {
        _baseTokenUri = _baseUri;
    }

    function contractURI() public view returns (string memory) {
        return revealedURI;
    }

    function setPublicPrice(uint256 _publicPrice) public onlyOwner {
        publicPrice = _publicPrice;
    }

    function setMaxMint(uint256 _max) public onlyOwner {
        MAX_MINT = _max;
    }

    function setBaseURI(string memory _baseUri) public onlyOwner {
        revealedURI = _baseUri;
    }

    function setContractURI(string memory _contractURI) public onlyOwner {
        revealedURI = _contractURI;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        // require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (_isRevealed == true){
            return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json"));
        } else {
            return string(abi.encodePacked(notRevealedURI, Strings.toString(1), ".json"));
        }
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }
    
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedURI = _notRevealedURI;
    }
    
    function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) {
        _safeMint(receiver, quantity);
    }

    // Withdraw
    function withdrawMoney() external onlyOwner  {
        require(address(this).balance > 0, "No ether left to withdraw");
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    modifier mintCompliance(uint256 quantity) {
        require(!paused, "Contract is paused");
        require(totalSupply() + quantity <= maxSupply, "you cant become ugly anymore");
        require(tx.origin == msg.sender, "No contract minting");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_revealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"checkPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"dests","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"doAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"fimint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"smint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"stepOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stepThree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stepTwo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006009556000600a556000600b556000600c556040518060400160405280601481526020017f697066733a2f2f202d2d2d2d494650532d2d2d2f000000000000000000000000815250600d9080519060200190620000659291906200070d565b506001600e60006101000a81548160ff0219169083151502179055506019601055660aa87bee5380006011556001601260006101000a81548160ff021916908315150217905550348015620000b957600080fd5b5060405162004a9838038062004a988339818101604052810190620000df919062000884565b828262000101620000f56200018060201b60201c565b6200018860201b60201c565b8160039080519060200190620001199291906200070d565b508060049080519060200190620001329291906200070d565b50620001436200024c60201b60201c565b600181905550505080600d9080519060200190620001639291906200070d565b50620001773360c86200025160201b60201c565b50505062000c18565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b620002738282604051806020016040528060008152506200027760201b60201c565b5050565b6200028983836200032960201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620003245760006001549050600083820390505b620002d360008683806001019450866200051360201b60201c565b6200030a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620002b85781600154146200032157600080fd5b50505b505050565b6000600154905060008214156200036c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200038160008483856200068560201b60201c565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200041083620003f260008660006200068b60201b60201c565b6200040385620006bb60201b60201c565b17620006cb60201b60201c565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620004b357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000476565b506000821415620004f0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506200050e6000848385620006f660201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000541620006fc60201b60201c565b8786866040518563ffffffff1660e01b8152600401620005659493929190620009a0565b602060405180830381600087803b1580156200058057600080fd5b505af1925050508015620005b457506040513d601f19601f82011682018060405250810190620005b1919062000852565b60015b62000632573d8060008114620005e7576040519150601f19603f3d011682016040523d82523d6000602084013e620005ec565b606091505b506000815114156200062a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620006aa8686846200070460201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b8280546200071b9062000b0f565b90600052602060002090601f0160209004810192826200073f57600085556200078b565b82601f106200075a57805160ff19168380011785556200078b565b828001600101855582156200078b579182015b828111156200078a5782518255916020019190600101906200076d565b5b5090506200079a91906200079e565b5090565b5b80821115620007b95760008160009055506001016200079f565b5090565b6000620007d4620007ce8462000a1d565b620009f4565b905082815260208101848484011115620007f357620007f262000bde565b5b6200080084828562000ad9565b509392505050565b600081519050620008198162000bfe565b92915050565b600082601f83011262000837576200083662000bd9565b5b815162000849848260208601620007bd565b91505092915050565b6000602082840312156200086b576200086a62000be8565b5b60006200087b8482850162000808565b91505092915050565b600080600060608486031215620008a0576200089f62000be8565b5b600084015167ffffffffffffffff811115620008c157620008c062000be3565b5b620008cf868287016200081f565b935050602084015167ffffffffffffffff811115620008f357620008f262000be3565b5b62000901868287016200081f565b925050604084015167ffffffffffffffff81111562000925576200092462000be3565b5b62000933868287016200081f565b9150509250925092565b620009488162000a6f565b82525050565b60006200095b8262000a53565b62000967818562000a5e565b93506200097981856020860162000ad9565b620009848162000bed565b840191505092915050565b6200099a8162000acf565b82525050565b6000608082019050620009b760008301876200093d565b620009c660208301866200093d565b620009d560408301856200098f565b8181036060830152620009e981846200094e565b905095945050505050565b600062000a0062000a13565b905062000a0e828262000b45565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a3b5762000a3a62000baa565b5b62000a468262000bed565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000a7c8262000aaf565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000af957808201518184015260208101905062000adc565b8381111562000b09576000848401525b50505050565b6000600282049050600182168062000b2857607f821691505b6020821081141562000b3f5762000b3e62000b7b565b5b50919050565b62000b508262000bed565b810181811067ffffffffffffffff8211171562000b725762000b7162000baa565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000c098162000a83565b811462000c1557600080fd5b50565b613e708062000c286000396000f3fe60806040526004361061025c5760003560e01c8063938e3d7b11610144578063b88d4fde116100b6578063e3a1a5ad1161007a578063e3a1a5ad146108c3578063e8a3d485146108df578063e985e9c51461090a578063f2c4ce1e14610947578063f2fde38b14610970578063f7e8d6ea146109995761025c565b8063b88d4fde146107e0578063c0116c3c14610809578063c627525514610832578063c87b56dd1461085b578063d5abeb01146108985761025c565b8063a67931d311610108578063a67931d3146106ef578063a945bf801461071a578063ac44600214610745578063ada7c4ed1461075c578063b4769e9614610799578063b8048d49146107b55761025c565b8063938e3d7b1461061e57806395d89b4114610647578063996517cf14610672578063a0bcfc7f1461069d578063a22cb465146106c65761025c565b806342842e0e116101dd5780636352211e116101a15780636352211e1461050e57806370a082311461054b578063715018a614610588578063722503801461059f5780638da5cb5b146105ca5780639007bd72146105f55761025c565b806342842e0e1461042b578063438b630014610454578063547520fe1461049157806355f804b3146104ba5780635c975abb146104e35761025c565b806316c38b3c1161022457806316c38b3c1461035a57806318160ddd1461038357806323b872dd146103ae57806332536eb4146103d757806340d0b4a9146104145761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b3146103065780630b3cbe361461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612e69565b6109c4565b6040516102959190613444565b60405180910390f35b3480156102aa57600080fd5b506102b3610a56565b6040516102c0919061345f565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190612f0c565b610ae8565b6040516102fd91906133bb565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190612d84565b610b67565b005b34801561033b57600080fd5b50610344610cab565b6040516103519190613601565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190612e3c565b610cb1565b005b34801561038f57600080fd5b50610398610cd6565b6040516103a59190613601565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190612c6e565b610ced565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190612f79565b611012565b60405161040b9190613601565b60405180910390f35b34801561042057600080fd5b50610429611028565b005b34801561043757600080fd5b50610452600480360381019061044d9190612c6e565b61104d565b005b34801561046057600080fd5b5061047b60048036038101906104769190612c01565b61106d565b6040516104889190613422565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190612f0c565b611178565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190612ec3565b61118a565b005b3480156104ef57600080fd5b506104f86111ac565b6040516105059190613444565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190612f0c565b6111bf565b60405161054291906133bb565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190612c01565b6111d1565b60405161057f9190613601565b60405180910390f35b34801561059457600080fd5b5061059d61128a565b005b3480156105ab57600080fd5b506105b461129e565b6040516105c1919061345f565b60405180910390f35b3480156105d657600080fd5b506105df61132c565b6040516105ec91906133bb565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190612f39565b611355565b005b34801561062a57600080fd5b5061064560048036038101906106409190612ec3565b611482565b005b34801561065357600080fd5b5061065c6114a4565b604051610669919061345f565b60405180910390f35b34801561067e57600080fd5b50610687611536565b6040516106949190613601565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612ec3565b61153c565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190612d44565b61155e565b005b3480156106fb57600080fd5b506107046116d6565b6040516107119190613601565b60405180910390f35b34801561072657600080fd5b5061072f6116dc565b60405161073c9190613601565b60405180910390f35b34801561075157600080fd5b5061075a6116e2565b005b34801561076857600080fd5b50610783600480360381019061077e9190612c01565b6117dc565b6040516107909190613601565b60405180910390f35b6107b360048036038101906107ae9190612f0c565b6117f4565b005b3480156107c157600080fd5b506107ca611809565b6040516107d79190613601565b60405180910390f35b3480156107ec57600080fd5b5061080760048036038101906108029190612cc1565b61180f565b005b34801561081557600080fd5b50610830600480360381019061082b9190612dc4565b611882565b005b34801561083e57600080fd5b5061085960048036038101906108549190612f0c565b6118ed565b005b34801561086757600080fd5b50610882600480360381019061087d9190612f0c565b6118ff565b60405161088f919061345f565b60405180910390f35b3480156108a457600080fd5b506108ad611983565b6040516108ba9190613601565b60405180910390f35b6108dd60048036038101906108d89190612f0c565b611989565b005b3480156108eb57600080fd5b506108f4611d3c565b604051610901919061345f565b60405180910390f35b34801561091657600080fd5b50610931600480360381019061092c9190612c2e565b611dce565b60405161093e9190613444565b60405180910390f35b34801561095357600080fd5b5061096e60048036038101906109699190612ec3565b611e62565b005b34801561097c57600080fd5b5061099760048036038101906109929190612c01565b611e84565b005b3480156109a557600080fd5b506109ae611f08565b6040516109bb919061345f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610a6590613962565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9190613962565b8015610ade5780601f10610ab357610100808354040283529160200191610ade565b820191906000526020600020905b815481529060010190602001808311610ac157829003601f168201915b5050505050905090565b6000610af382611f96565b610b29576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b72826111bf565b90508073ffffffffffffffffffffffffffffffffffffffff16610b93611ff5565b73ffffffffffffffffffffffffffffffffffffffff1614610bf657610bbf81610bba611ff5565b611dce565b610bf5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b610cb9611ffd565b80600e60006101000a81548160ff02191690831515021790555050565b6000610ce061207b565b6002546001540303905090565b6000610cf882612080565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d5f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d6b8461214e565b91509150610d818187610d7c611ff5565b612175565b610dcd57610d9686610d91611ff5565b611dce565b610dcc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e34576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e4186868660016121b9565b8015610e4c57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f1a85610ef68888876121bf565b7c0200000000000000000000000000000000000000000000000000000000176121e7565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fa2576000600185019050600060056000838152602001908152602001600020541415610fa0576001548114610f9f578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461100a8686866001612212565b505050505050565b60008183611020919061381e565b905092915050565b611030611ffd565b6001601260006101000a81548160ff021916908315150217905550565b6110688383836040518060200160405280600081525061180f565b505050565b6060600061107a836111d1565b905060008167ffffffffffffffff81111561109857611097613afb565b5b6040519080825280602002602001820160405280156110c65781602001602082028036833780820191505090505b50905060006001905060005b83811080156110e357506127108211155b1561116c5760006110f3836111bf565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611158578284838151811061113d5761113c613acc565b5b6020026020010181815250508180611154906139c5565b9250505b8280611163906139c5565b935050506110d2565b82945050505050919050565b611180611ffd565b8060108190555050565b611192611ffd565b80600d90805190602001906111a89291906128d9565b5050565b600e60009054906101000a900460ff1681565b60006111ca82612080565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611239576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611292611ffd565b61129c6000612218565b565b601480546112ab90613962565b80601f01602080910402602001604051908101604052809291908181526020018280546112d790613962565b80156113245780601f106112f957610100808354040283529160200191611324565b820191906000526020600020905b81548152906001019060200180831161130757829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61135d611ffd565b81600e60009054906101000a900460ff16156113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a5906135e1565b60405180910390fd5b612710816113ba610cd6565b6113c49190613797565b1115611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc90613481565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a906134e1565b60405180910390fd5b61147d82846122dc565b505050565b61148a611ffd565b80600d90805190602001906114a09291906128d9565b5050565b6060600480546114b390613962565b80601f01602080910402602001604051908101604052809291908181526020018280546114df90613962565b801561152c5780601f106115015761010080835404028352916020019161152c565b820191906000526020600020905b81548152906001019060200180831161150f57829003601f168201915b5050505050905090565b60095481565b611544611ffd565b806013908051906020019061155a9291906128d9565b5050565b611566611ff5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006115d8611ff5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611685611ff5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ca9190613444565b60405180910390a35050565b600b5481565b60115481565b6116ea611ffd565b6000471161172d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172490613561565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611753906133a6565b60006040518083038185875af1925050503d8060008114611790576040519150601f19603f3d011682016040523d82523d6000602084013e611795565b606091505b50509050806117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d0906135a1565b60405180910390fd5b50565b600f6020528060005260406000206000915090505481565b6117fc611ffd565b61180633826122dc565b50565b600c5481565b61181a848484610ced565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461187c57611845848484846122fa565b61187b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61188a611ffd565b60005b82518110156118e8576118d5338483815181106118ad576118ac613acc565b5b60200260200101518484815181106118c8576118c7613acc565b5b602002602001015161104d565b80806118e0906139c5565b91505061188d565b505050565b6118f5611ffd565b8060118190555050565b606060011515601260009054906101000a900460ff161515141561194f57600d6119288361245a565b604051602001611939929190613377565b604051602081830303815290604052905061197e565b601461195b600161245a565b60405160200161196c929190613377565b60405160208183030381529060405290505b919050565b61271081565b80600e60009054906101000a900460ff16156119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d1906135e1565b60405180910390fd5b612710816119e6610cd6565b6119f09190613797565b1115611a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2890613481565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a96906134e1565b60405180910390fd5b611aa7610cd6565b61271011611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190613501565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506010548382611b3d9190613797565b1115611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7590613521565b60405180910390fd5b6000811415611c755760018314611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190613541565b60405180910390fd5b6000611bd68185611012565b341015611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f906134c1565b60405180910390fd5b611c21816125bb565b83600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c6f33856122dc565b50611d37565b60006011549050611c868185611012565b341015611cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbf906134c1565b60405180910390fd5b611cdc8482611cd7919061381e565b6125bb565b8382611ce89190613797565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d3533856122dc565b505b505050565b6060600d8054611d4b90613962565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7790613962565b8015611dc45780601f10611d9957610100808354040283529160200191611dc4565b820191906000526020600020905b815481529060010190602001808311611da757829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e6a611ffd565b8060149080519060200190611e809291906128d9565b5050565b611e8c611ffd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef3906134a1565b60405180910390fd5b611f0581612218565b50565b600d8054611f1590613962565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4190613962565b8015611f8e5780601f10611f6357610100808354040283529160200191611f8e565b820191906000526020600020905b815481529060010190602001808311611f7157829003601f168201915b505050505081565b600081611fa161207b565b11158015611fb0575060015482105b8015611fee575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b61200561265c565b73ffffffffffffffffffffffffffffffffffffffff1661202361132c565b73ffffffffffffffffffffffffffffffffffffffff1614612079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207090613581565b60405180910390fd5b565b600090565b6000808290508061208f61207b565b11612117576001548110156121165760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612114575b600081141561210a5760056000836001900393508381526020019081526020016000205490506120df565b8092505050612149565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121d6868684612664565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122f682826040518060200160405280600081525061266d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612320611ff5565b8786866040518563ffffffff1660e01b815260040161234294939291906133d6565b602060405180830381600087803b15801561235c57600080fd5b505af192505050801561238d57506040513d601f19601f8201168201806040525081019061238a9190612e96565b60015b612407573d80600081146123bd576040519150601f19603f3d011682016040523d82523d6000602084013e6123c2565b606091505b506000815114156123ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156124a2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125b6565b600082905060005b600082146124d45780806124bd906139c5565b915050600a826124cd91906137ed565b91506124aa565b60008167ffffffffffffffff8111156124f0576124ef613afb565b5b6040519080825280601f01601f1916602001820160405280156125225781602001600182028036833780820191505090505b5090505b600085146125af5760018261253b9190613878565b9150600a8561254a9190613a0e565b60306125569190613797565b60f81b81838151811061256c5761256b613acc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125a891906137ed565b9450612526565b8093505050505b919050565b803410156125fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f5906135c1565b60405180910390fd5b80341115612659573373ffffffffffffffffffffffffffffffffffffffff166108fc823461262c9190613878565b9081150290604051600060405180830381858888f19350505050158015612657573d6000803e3d6000fd5b505b50565b600033905090565b60009392505050565b612677838361270b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127065760006001549050600083820390505b6126b860008683806001019450866122fa565b6126ee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126a557816001541461270357600080fd5b50505b505050565b60006001549050600082141561274d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61275a60008483856121b9565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127d1836127c260008660006121bf565b6127cb856128c9565b176121e7565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461287257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612837565b5060008214156128ae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506128c46000848385612212565b505050565b60006001821460e11b9050919050565b8280546128e590613962565b90600052602060002090601f016020900481019282612907576000855561294e565b82601f1061292057805160ff191683800117855561294e565b8280016001018555821561294e579182015b8281111561294d578251825591602001919060010190612932565b5b50905061295b919061295f565b5090565b5b80821115612978576000816000905550600101612960565b5090565b600061298f61298a84613641565b61361c565b905080838252602082019050828560208602820111156129b2576129b1613b2f565b5b60005b858110156129e257816129c88882612ae0565b8452602084019350602083019250506001810190506129b5565b5050509392505050565b60006129ff6129fa8461366d565b61361c565b90508083825260208201905082856020860282011115612a2257612a21613b2f565b5b60005b85811015612a525781612a388882612bec565b845260208401935060208301925050600181019050612a25565b5050509392505050565b6000612a6f612a6a84613699565b61361c565b905082815260208101848484011115612a8b57612a8a613b34565b5b612a96848285613920565b509392505050565b6000612ab1612aac846136ca565b61361c565b905082815260208101848484011115612acd57612acc613b34565b5b612ad8848285613920565b509392505050565b600081359050612aef81613dde565b92915050565b600082601f830112612b0a57612b09613b2a565b5b8135612b1a84826020860161297c565b91505092915050565b600082601f830112612b3857612b37613b2a565b5b8135612b488482602086016129ec565b91505092915050565b600081359050612b6081613df5565b92915050565b600081359050612b7581613e0c565b92915050565b600081519050612b8a81613e0c565b92915050565b600082601f830112612ba557612ba4613b2a565b5b8135612bb5848260208601612a5c565b91505092915050565b600082601f830112612bd357612bd2613b2a565b5b8135612be3848260208601612a9e565b91505092915050565b600081359050612bfb81613e23565b92915050565b600060208284031215612c1757612c16613b3e565b5b6000612c2584828501612ae0565b91505092915050565b60008060408385031215612c4557612c44613b3e565b5b6000612c5385828601612ae0565b9250506020612c6485828601612ae0565b9150509250929050565b600080600060608486031215612c8757612c86613b3e565b5b6000612c9586828701612ae0565b9350506020612ca686828701612ae0565b9250506040612cb786828701612bec565b9150509250925092565b60008060008060808587031215612cdb57612cda613b3e565b5b6000612ce987828801612ae0565b9450506020612cfa87828801612ae0565b9350506040612d0b87828801612bec565b925050606085013567ffffffffffffffff811115612d2c57612d2b613b39565b5b612d3887828801612b90565b91505092959194509250565b60008060408385031215612d5b57612d5a613b3e565b5b6000612d6985828601612ae0565b9250506020612d7a85828601612b51565b9150509250929050565b60008060408385031215612d9b57612d9a613b3e565b5b6000612da985828601612ae0565b9250506020612dba85828601612bec565b9150509250929050565b60008060408385031215612ddb57612dda613b3e565b5b600083013567ffffffffffffffff811115612df957612df8613b39565b5b612e0585828601612af5565b925050602083013567ffffffffffffffff811115612e2657612e25613b39565b5b612e3285828601612b23565b9150509250929050565b600060208284031215612e5257612e51613b3e565b5b6000612e6084828501612b51565b91505092915050565b600060208284031215612e7f57612e7e613b3e565b5b6000612e8d84828501612b66565b91505092915050565b600060208284031215612eac57612eab613b3e565b5b6000612eba84828501612b7b565b91505092915050565b600060208284031215612ed957612ed8613b3e565b5b600082013567ffffffffffffffff811115612ef757612ef6613b39565b5b612f0384828501612bbe565b91505092915050565b600060208284031215612f2257612f21613b3e565b5b6000612f3084828501612bec565b91505092915050565b60008060408385031215612f5057612f4f613b3e565b5b6000612f5e85828601612bec565b9250506020612f6f85828601612ae0565b9150509250929050565b60008060408385031215612f9057612f8f613b3e565b5b6000612f9e85828601612bec565b9250506020612faf85828601612bec565b9150509250929050565b6000612fc58383613359565b60208301905092915050565b612fda816138ac565b82525050565b6000612feb82613720565b612ff5818561374e565b9350613000836136fb565b8060005b838110156130315781516130188882612fb9565b975061302383613741565b925050600181019050613004565b5085935050505092915050565b613047816138be565b82525050565b60006130588261372b565b613062818561375f565b935061307281856020860161392f565b61307b81613b43565b840191505092915050565b600061309182613736565b61309b818561377b565b93506130ab81856020860161392f565b6130b481613b43565b840191505092915050565b60006130ca82613736565b6130d4818561378c565b93506130e481856020860161392f565b80840191505092915050565b600081546130fd81613962565b613107818661378c565b94506001821660008114613122576001811461313357613166565b60ff19831686528186019350613166565b61313c8561370b565b60005b8381101561315e5781548189015260018201915060208101905061313f565b838801955050505b50505092915050565b600061317c601c8361377b565b915061318782613b54565b602082019050919050565b600061319f60268361377b565b91506131aa82613b7d565b604082019050919050565b60006131c260238361377b565b91506131cd82613bcc565b604082019050919050565b60006131e560138361377b565b91506131f082613c1b565b602082019050919050565b600061320860088361377b565b915061321382613c44565b602082019050919050565b600061322b60158361377b565b915061323682613c6d565b602082019050919050565b600061324e60248361377b565b915061325982613c96565b604082019050919050565b600061327160198361377b565b915061327c82613ce5565b602082019050919050565b600061329460058361378c565b915061329f82613d0e565b600582019050919050565b60006132b760208361377b565b91506132c282613d37565b602082019050919050565b60006132da600083613770565b91506132e582613d60565b600082019050919050565b60006132fd60108361377b565b915061330882613d63565b602082019050919050565b600061332060168361377b565b915061332b82613d8c565b602082019050919050565b600061334360128361377b565b915061334e82613db5565b602082019050919050565b61336281613916565b82525050565b61337181613916565b82525050565b600061338382856130f0565b915061338f82846130bf565b915061339a82613287565b91508190509392505050565b60006133b1826132cd565b9150819050919050565b60006020820190506133d06000830184612fd1565b92915050565b60006080820190506133eb6000830187612fd1565b6133f86020830186612fd1565b6134056040830185613368565b8181036060830152613417818461304d565b905095945050505050565b6000602082019050818103600083015261343c8184612fe0565b905092915050565b6000602082019050613459600083018461303e565b92915050565b600060208201905081810360008301526134798184613086565b905092915050565b6000602082019050818103600083015261349a8161316f565b9050919050565b600060208201905081810360008301526134ba81613192565b9050919050565b600060208201905081810360008301526134da816131b5565b9050919050565b600060208201905081810360008301526134fa816131d8565b9050919050565b6000602082019050818103600083015261351a816131fb565b9050919050565b6000602082019050818103600083015261353a8161321e565b9050919050565b6000602082019050818103600083015261355a81613241565b9050919050565b6000602082019050818103600083015261357a81613264565b9050919050565b6000602082019050818103600083015261359a816132aa565b9050919050565b600060208201905081810360008301526135ba816132f0565b9050919050565b600060208201905081810360008301526135da81613313565b9050919050565b600060208201905081810360008301526135fa81613336565b9050919050565b60006020820190506136166000830184613368565b92915050565b6000613626613637565b90506136328282613994565b919050565b6000604051905090565b600067ffffffffffffffff82111561365c5761365b613afb565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561368857613687613afb565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156136b4576136b3613afb565b5b6136bd82613b43565b9050602081019050919050565b600067ffffffffffffffff8211156136e5576136e4613afb565b5b6136ee82613b43565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137a282613916565b91506137ad83613916565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137e2576137e1613a3f565b5b828201905092915050565b60006137f882613916565b915061380383613916565b92508261381357613812613a6e565b5b828204905092915050565b600061382982613916565b915061383483613916565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561386d5761386c613a3f565b5b828202905092915050565b600061388382613916565b915061388e83613916565b9250828210156138a1576138a0613a3f565b5b828203905092915050565b60006138b7826138f6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561394d578082015181840152602081019050613932565b8381111561395c576000848401525b50505050565b6000600282049050600182168061397a57607f821691505b6020821081141561398e5761398d613a9d565b5b50919050565b61399d82613b43565b810181811067ffffffffffffffff821117156139bc576139bb613afb565b5b80604052505050565b60006139d082613916565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a0357613a02613a3f565b5b600182019050919050565b6000613a1982613916565b9150613a2483613916565b925082613a3457613a33613a6e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f796f752063616e74206265636f6d652075676c7920616e796d6f726500000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f56616c75652062656c6f772070726963652c206e65656420746f20706179206d60008201527f6f72650000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f752077616e6e61206d696e7420746f6f206d616e790000000000000000000000600082015250565b7f66697374206d696e74206f6e6c792063616e20626520667265656d696e74203160008201527f206e667400000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b613de7816138ac565b8114613df257600080fd5b50565b613dfe816138be565b8114613e0957600080fd5b50565b613e15816138ca565b8114613e2057600080fd5b50565b613e2c81613916565b8114613e3757600080fd5b5056fea26469706673582212202eb7e4b73c32a665efa02655d24626f3fcebce78cea0813f7361bbab7c61305864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d464f5552494d4d4f5254414c530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024649000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f64396a7164716b6c6d396c78362e636c6f756466726f6e742e6e65742f666f7572696d6d6f7274616c732f00000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063938e3d7b11610144578063b88d4fde116100b6578063e3a1a5ad1161007a578063e3a1a5ad146108c3578063e8a3d485146108df578063e985e9c51461090a578063f2c4ce1e14610947578063f2fde38b14610970578063f7e8d6ea146109995761025c565b8063b88d4fde146107e0578063c0116c3c14610809578063c627525514610832578063c87b56dd1461085b578063d5abeb01146108985761025c565b8063a67931d311610108578063a67931d3146106ef578063a945bf801461071a578063ac44600214610745578063ada7c4ed1461075c578063b4769e9614610799578063b8048d49146107b55761025c565b8063938e3d7b1461061e57806395d89b4114610647578063996517cf14610672578063a0bcfc7f1461069d578063a22cb465146106c65761025c565b806342842e0e116101dd5780636352211e116101a15780636352211e1461050e57806370a082311461054b578063715018a614610588578063722503801461059f5780638da5cb5b146105ca5780639007bd72146105f55761025c565b806342842e0e1461042b578063438b630014610454578063547520fe1461049157806355f804b3146104ba5780635c975abb146104e35761025c565b806316c38b3c1161022457806316c38b3c1461035a57806318160ddd1461038357806323b872dd146103ae57806332536eb4146103d757806340d0b4a9146104145761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b3146103065780630b3cbe361461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612e69565b6109c4565b6040516102959190613444565b60405180910390f35b3480156102aa57600080fd5b506102b3610a56565b6040516102c0919061345f565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190612f0c565b610ae8565b6040516102fd91906133bb565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190612d84565b610b67565b005b34801561033b57600080fd5b50610344610cab565b6040516103519190613601565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190612e3c565b610cb1565b005b34801561038f57600080fd5b50610398610cd6565b6040516103a59190613601565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190612c6e565b610ced565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190612f79565b611012565b60405161040b9190613601565b60405180910390f35b34801561042057600080fd5b50610429611028565b005b34801561043757600080fd5b50610452600480360381019061044d9190612c6e565b61104d565b005b34801561046057600080fd5b5061047b60048036038101906104769190612c01565b61106d565b6040516104889190613422565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190612f0c565b611178565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190612ec3565b61118a565b005b3480156104ef57600080fd5b506104f86111ac565b6040516105059190613444565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190612f0c565b6111bf565b60405161054291906133bb565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190612c01565b6111d1565b60405161057f9190613601565b60405180910390f35b34801561059457600080fd5b5061059d61128a565b005b3480156105ab57600080fd5b506105b461129e565b6040516105c1919061345f565b60405180910390f35b3480156105d657600080fd5b506105df61132c565b6040516105ec91906133bb565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190612f39565b611355565b005b34801561062a57600080fd5b5061064560048036038101906106409190612ec3565b611482565b005b34801561065357600080fd5b5061065c6114a4565b604051610669919061345f565b60405180910390f35b34801561067e57600080fd5b50610687611536565b6040516106949190613601565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612ec3565b61153c565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190612d44565b61155e565b005b3480156106fb57600080fd5b506107046116d6565b6040516107119190613601565b60405180910390f35b34801561072657600080fd5b5061072f6116dc565b60405161073c9190613601565b60405180910390f35b34801561075157600080fd5b5061075a6116e2565b005b34801561076857600080fd5b50610783600480360381019061077e9190612c01565b6117dc565b6040516107909190613601565b60405180910390f35b6107b360048036038101906107ae9190612f0c565b6117f4565b005b3480156107c157600080fd5b506107ca611809565b6040516107d79190613601565b60405180910390f35b3480156107ec57600080fd5b5061080760048036038101906108029190612cc1565b61180f565b005b34801561081557600080fd5b50610830600480360381019061082b9190612dc4565b611882565b005b34801561083e57600080fd5b5061085960048036038101906108549190612f0c565b6118ed565b005b34801561086757600080fd5b50610882600480360381019061087d9190612f0c565b6118ff565b60405161088f919061345f565b60405180910390f35b3480156108a457600080fd5b506108ad611983565b6040516108ba9190613601565b60405180910390f35b6108dd60048036038101906108d89190612f0c565b611989565b005b3480156108eb57600080fd5b506108f4611d3c565b604051610901919061345f565b60405180910390f35b34801561091657600080fd5b50610931600480360381019061092c9190612c2e565b611dce565b60405161093e9190613444565b60405180910390f35b34801561095357600080fd5b5061096e60048036038101906109699190612ec3565b611e62565b005b34801561097c57600080fd5b5061099760048036038101906109929190612c01565b611e84565b005b3480156109a557600080fd5b506109ae611f08565b6040516109bb919061345f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610a6590613962565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9190613962565b8015610ade5780601f10610ab357610100808354040283529160200191610ade565b820191906000526020600020905b815481529060010190602001808311610ac157829003601f168201915b5050505050905090565b6000610af382611f96565b610b29576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b72826111bf565b90508073ffffffffffffffffffffffffffffffffffffffff16610b93611ff5565b73ffffffffffffffffffffffffffffffffffffffff1614610bf657610bbf81610bba611ff5565b611dce565b610bf5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b610cb9611ffd565b80600e60006101000a81548160ff02191690831515021790555050565b6000610ce061207b565b6002546001540303905090565b6000610cf882612080565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d5f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d6b8461214e565b91509150610d818187610d7c611ff5565b612175565b610dcd57610d9686610d91611ff5565b611dce565b610dcc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e34576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e4186868660016121b9565b8015610e4c57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f1a85610ef68888876121bf565b7c0200000000000000000000000000000000000000000000000000000000176121e7565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fa2576000600185019050600060056000838152602001908152602001600020541415610fa0576001548114610f9f578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461100a8686866001612212565b505050505050565b60008183611020919061381e565b905092915050565b611030611ffd565b6001601260006101000a81548160ff021916908315150217905550565b6110688383836040518060200160405280600081525061180f565b505050565b6060600061107a836111d1565b905060008167ffffffffffffffff81111561109857611097613afb565b5b6040519080825280602002602001820160405280156110c65781602001602082028036833780820191505090505b50905060006001905060005b83811080156110e357506127108211155b1561116c5760006110f3836111bf565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611158578284838151811061113d5761113c613acc565b5b6020026020010181815250508180611154906139c5565b9250505b8280611163906139c5565b935050506110d2565b82945050505050919050565b611180611ffd565b8060108190555050565b611192611ffd565b80600d90805190602001906111a89291906128d9565b5050565b600e60009054906101000a900460ff1681565b60006111ca82612080565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611239576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611292611ffd565b61129c6000612218565b565b601480546112ab90613962565b80601f01602080910402602001604051908101604052809291908181526020018280546112d790613962565b80156113245780601f106112f957610100808354040283529160200191611324565b820191906000526020600020905b81548152906001019060200180831161130757829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61135d611ffd565b81600e60009054906101000a900460ff16156113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a5906135e1565b60405180910390fd5b612710816113ba610cd6565b6113c49190613797565b1115611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc90613481565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a906134e1565b60405180910390fd5b61147d82846122dc565b505050565b61148a611ffd565b80600d90805190602001906114a09291906128d9565b5050565b6060600480546114b390613962565b80601f01602080910402602001604051908101604052809291908181526020018280546114df90613962565b801561152c5780601f106115015761010080835404028352916020019161152c565b820191906000526020600020905b81548152906001019060200180831161150f57829003601f168201915b5050505050905090565b60095481565b611544611ffd565b806013908051906020019061155a9291906128d9565b5050565b611566611ff5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006115d8611ff5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611685611ff5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ca9190613444565b60405180910390a35050565b600b5481565b60115481565b6116ea611ffd565b6000471161172d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172490613561565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611753906133a6565b60006040518083038185875af1925050503d8060008114611790576040519150601f19603f3d011682016040523d82523d6000602084013e611795565b606091505b50509050806117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d0906135a1565b60405180910390fd5b50565b600f6020528060005260406000206000915090505481565b6117fc611ffd565b61180633826122dc565b50565b600c5481565b61181a848484610ced565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461187c57611845848484846122fa565b61187b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61188a611ffd565b60005b82518110156118e8576118d5338483815181106118ad576118ac613acc565b5b60200260200101518484815181106118c8576118c7613acc565b5b602002602001015161104d565b80806118e0906139c5565b91505061188d565b505050565b6118f5611ffd565b8060118190555050565b606060011515601260009054906101000a900460ff161515141561194f57600d6119288361245a565b604051602001611939929190613377565b604051602081830303815290604052905061197e565b601461195b600161245a565b60405160200161196c929190613377565b60405160208183030381529060405290505b919050565b61271081565b80600e60009054906101000a900460ff16156119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d1906135e1565b60405180910390fd5b612710816119e6610cd6565b6119f09190613797565b1115611a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2890613481565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a96906134e1565b60405180910390fd5b611aa7610cd6565b61271011611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190613501565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506010548382611b3d9190613797565b1115611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7590613521565b60405180910390fd5b6000811415611c755760018314611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190613541565b60405180910390fd5b6000611bd68185611012565b341015611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f906134c1565b60405180910390fd5b611c21816125bb565b83600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c6f33856122dc565b50611d37565b60006011549050611c868185611012565b341015611cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbf906134c1565b60405180910390fd5b611cdc8482611cd7919061381e565b6125bb565b8382611ce89190613797565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d3533856122dc565b505b505050565b6060600d8054611d4b90613962565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7790613962565b8015611dc45780601f10611d9957610100808354040283529160200191611dc4565b820191906000526020600020905b815481529060010190602001808311611da757829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e6a611ffd565b8060149080519060200190611e809291906128d9565b5050565b611e8c611ffd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef3906134a1565b60405180910390fd5b611f0581612218565b50565b600d8054611f1590613962565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4190613962565b8015611f8e5780601f10611f6357610100808354040283529160200191611f8e565b820191906000526020600020905b815481529060010190602001808311611f7157829003601f168201915b505050505081565b600081611fa161207b565b11158015611fb0575060015482105b8015611fee575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b61200561265c565b73ffffffffffffffffffffffffffffffffffffffff1661202361132c565b73ffffffffffffffffffffffffffffffffffffffff1614612079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207090613581565b60405180910390fd5b565b600090565b6000808290508061208f61207b565b11612117576001548110156121165760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612114575b600081141561210a5760056000836001900393508381526020019081526020016000205490506120df565b8092505050612149565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121d6868684612664565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122f682826040518060200160405280600081525061266d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612320611ff5565b8786866040518563ffffffff1660e01b815260040161234294939291906133d6565b602060405180830381600087803b15801561235c57600080fd5b505af192505050801561238d57506040513d601f19601f8201168201806040525081019061238a9190612e96565b60015b612407573d80600081146123bd576040519150601f19603f3d011682016040523d82523d6000602084013e6123c2565b606091505b506000815114156123ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156124a2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125b6565b600082905060005b600082146124d45780806124bd906139c5565b915050600a826124cd91906137ed565b91506124aa565b60008167ffffffffffffffff8111156124f0576124ef613afb565b5b6040519080825280601f01601f1916602001820160405280156125225781602001600182028036833780820191505090505b5090505b600085146125af5760018261253b9190613878565b9150600a8561254a9190613a0e565b60306125569190613797565b60f81b81838151811061256c5761256b613acc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125a891906137ed565b9450612526565b8093505050505b919050565b803410156125fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f5906135c1565b60405180910390fd5b80341115612659573373ffffffffffffffffffffffffffffffffffffffff166108fc823461262c9190613878565b9081150290604051600060405180830381858888f19350505050158015612657573d6000803e3d6000fd5b505b50565b600033905090565b60009392505050565b612677838361270b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127065760006001549050600083820390505b6126b860008683806001019450866122fa565b6126ee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126a557816001541461270357600080fd5b50505b505050565b60006001549050600082141561274d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61275a60008483856121b9565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127d1836127c260008660006121bf565b6127cb856128c9565b176121e7565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461287257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612837565b5060008214156128ae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506128c46000848385612212565b505050565b60006001821460e11b9050919050565b8280546128e590613962565b90600052602060002090601f016020900481019282612907576000855561294e565b82601f1061292057805160ff191683800117855561294e565b8280016001018555821561294e579182015b8281111561294d578251825591602001919060010190612932565b5b50905061295b919061295f565b5090565b5b80821115612978576000816000905550600101612960565b5090565b600061298f61298a84613641565b61361c565b905080838252602082019050828560208602820111156129b2576129b1613b2f565b5b60005b858110156129e257816129c88882612ae0565b8452602084019350602083019250506001810190506129b5565b5050509392505050565b60006129ff6129fa8461366d565b61361c565b90508083825260208201905082856020860282011115612a2257612a21613b2f565b5b60005b85811015612a525781612a388882612bec565b845260208401935060208301925050600181019050612a25565b5050509392505050565b6000612a6f612a6a84613699565b61361c565b905082815260208101848484011115612a8b57612a8a613b34565b5b612a96848285613920565b509392505050565b6000612ab1612aac846136ca565b61361c565b905082815260208101848484011115612acd57612acc613b34565b5b612ad8848285613920565b509392505050565b600081359050612aef81613dde565b92915050565b600082601f830112612b0a57612b09613b2a565b5b8135612b1a84826020860161297c565b91505092915050565b600082601f830112612b3857612b37613b2a565b5b8135612b488482602086016129ec565b91505092915050565b600081359050612b6081613df5565b92915050565b600081359050612b7581613e0c565b92915050565b600081519050612b8a81613e0c565b92915050565b600082601f830112612ba557612ba4613b2a565b5b8135612bb5848260208601612a5c565b91505092915050565b600082601f830112612bd357612bd2613b2a565b5b8135612be3848260208601612a9e565b91505092915050565b600081359050612bfb81613e23565b92915050565b600060208284031215612c1757612c16613b3e565b5b6000612c2584828501612ae0565b91505092915050565b60008060408385031215612c4557612c44613b3e565b5b6000612c5385828601612ae0565b9250506020612c6485828601612ae0565b9150509250929050565b600080600060608486031215612c8757612c86613b3e565b5b6000612c9586828701612ae0565b9350506020612ca686828701612ae0565b9250506040612cb786828701612bec565b9150509250925092565b60008060008060808587031215612cdb57612cda613b3e565b5b6000612ce987828801612ae0565b9450506020612cfa87828801612ae0565b9350506040612d0b87828801612bec565b925050606085013567ffffffffffffffff811115612d2c57612d2b613b39565b5b612d3887828801612b90565b91505092959194509250565b60008060408385031215612d5b57612d5a613b3e565b5b6000612d6985828601612ae0565b9250506020612d7a85828601612b51565b9150509250929050565b60008060408385031215612d9b57612d9a613b3e565b5b6000612da985828601612ae0565b9250506020612dba85828601612bec565b9150509250929050565b60008060408385031215612ddb57612dda613b3e565b5b600083013567ffffffffffffffff811115612df957612df8613b39565b5b612e0585828601612af5565b925050602083013567ffffffffffffffff811115612e2657612e25613b39565b5b612e3285828601612b23565b9150509250929050565b600060208284031215612e5257612e51613b3e565b5b6000612e6084828501612b51565b91505092915050565b600060208284031215612e7f57612e7e613b3e565b5b6000612e8d84828501612b66565b91505092915050565b600060208284031215612eac57612eab613b3e565b5b6000612eba84828501612b7b565b91505092915050565b600060208284031215612ed957612ed8613b3e565b5b600082013567ffffffffffffffff811115612ef757612ef6613b39565b5b612f0384828501612bbe565b91505092915050565b600060208284031215612f2257612f21613b3e565b5b6000612f3084828501612bec565b91505092915050565b60008060408385031215612f5057612f4f613b3e565b5b6000612f5e85828601612bec565b9250506020612f6f85828601612ae0565b9150509250929050565b60008060408385031215612f9057612f8f613b3e565b5b6000612f9e85828601612bec565b9250506020612faf85828601612bec565b9150509250929050565b6000612fc58383613359565b60208301905092915050565b612fda816138ac565b82525050565b6000612feb82613720565b612ff5818561374e565b9350613000836136fb565b8060005b838110156130315781516130188882612fb9565b975061302383613741565b925050600181019050613004565b5085935050505092915050565b613047816138be565b82525050565b60006130588261372b565b613062818561375f565b935061307281856020860161392f565b61307b81613b43565b840191505092915050565b600061309182613736565b61309b818561377b565b93506130ab81856020860161392f565b6130b481613b43565b840191505092915050565b60006130ca82613736565b6130d4818561378c565b93506130e481856020860161392f565b80840191505092915050565b600081546130fd81613962565b613107818661378c565b94506001821660008114613122576001811461313357613166565b60ff19831686528186019350613166565b61313c8561370b565b60005b8381101561315e5781548189015260018201915060208101905061313f565b838801955050505b50505092915050565b600061317c601c8361377b565b915061318782613b54565b602082019050919050565b600061319f60268361377b565b91506131aa82613b7d565b604082019050919050565b60006131c260238361377b565b91506131cd82613bcc565b604082019050919050565b60006131e560138361377b565b91506131f082613c1b565b602082019050919050565b600061320860088361377b565b915061321382613c44565b602082019050919050565b600061322b60158361377b565b915061323682613c6d565b602082019050919050565b600061324e60248361377b565b915061325982613c96565b604082019050919050565b600061327160198361377b565b915061327c82613ce5565b602082019050919050565b600061329460058361378c565b915061329f82613d0e565b600582019050919050565b60006132b760208361377b565b91506132c282613d37565b602082019050919050565b60006132da600083613770565b91506132e582613d60565b600082019050919050565b60006132fd60108361377b565b915061330882613d63565b602082019050919050565b600061332060168361377b565b915061332b82613d8c565b602082019050919050565b600061334360128361377b565b915061334e82613db5565b602082019050919050565b61336281613916565b82525050565b61337181613916565b82525050565b600061338382856130f0565b915061338f82846130bf565b915061339a82613287565b91508190509392505050565b60006133b1826132cd565b9150819050919050565b60006020820190506133d06000830184612fd1565b92915050565b60006080820190506133eb6000830187612fd1565b6133f86020830186612fd1565b6134056040830185613368565b8181036060830152613417818461304d565b905095945050505050565b6000602082019050818103600083015261343c8184612fe0565b905092915050565b6000602082019050613459600083018461303e565b92915050565b600060208201905081810360008301526134798184613086565b905092915050565b6000602082019050818103600083015261349a8161316f565b9050919050565b600060208201905081810360008301526134ba81613192565b9050919050565b600060208201905081810360008301526134da816131b5565b9050919050565b600060208201905081810360008301526134fa816131d8565b9050919050565b6000602082019050818103600083015261351a816131fb565b9050919050565b6000602082019050818103600083015261353a8161321e565b9050919050565b6000602082019050818103600083015261355a81613241565b9050919050565b6000602082019050818103600083015261357a81613264565b9050919050565b6000602082019050818103600083015261359a816132aa565b9050919050565b600060208201905081810360008301526135ba816132f0565b9050919050565b600060208201905081810360008301526135da81613313565b9050919050565b600060208201905081810360008301526135fa81613336565b9050919050565b60006020820190506136166000830184613368565b92915050565b6000613626613637565b90506136328282613994565b919050565b6000604051905090565b600067ffffffffffffffff82111561365c5761365b613afb565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561368857613687613afb565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156136b4576136b3613afb565b5b6136bd82613b43565b9050602081019050919050565b600067ffffffffffffffff8211156136e5576136e4613afb565b5b6136ee82613b43565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137a282613916565b91506137ad83613916565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137e2576137e1613a3f565b5b828201905092915050565b60006137f882613916565b915061380383613916565b92508261381357613812613a6e565b5b828204905092915050565b600061382982613916565b915061383483613916565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561386d5761386c613a3f565b5b828202905092915050565b600061388382613916565b915061388e83613916565b9250828210156138a1576138a0613a3f565b5b828203905092915050565b60006138b7826138f6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561394d578082015181840152602081019050613932565b8381111561395c576000848401525b50505050565b6000600282049050600182168061397a57607f821691505b6020821081141561398e5761398d613a9d565b5b50919050565b61399d82613b43565b810181811067ffffffffffffffff821117156139bc576139bb613afb565b5b80604052505050565b60006139d082613916565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a0357613a02613a3f565b5b600182019050919050565b6000613a1982613916565b9150613a2483613916565b925082613a3457613a33613a6e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f796f752063616e74206265636f6d652075676c7920616e796d6f726500000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f56616c75652062656c6f772070726963652c206e65656420746f20706179206d60008201527f6f72650000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f752077616e6e61206d696e7420746f6f206d616e790000000000000000000000600082015250565b7f66697374206d696e74206f6e6c792063616e20626520667265656d696e74203160008201527f206e667400000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b613de7816138ac565b8114613df257600080fd5b50565b613dfe816138be565b8114613e0957600080fd5b50565b613e15816138ca565b8114613e2057600080fd5b50565b613e2c81613916565b8114613e3757600080fd5b5056fea26469706673582212202eb7e4b73c32a665efa02655d24626f3fcebce78cea0813f7361bbab7c61305864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d464f5552494d4d4f5254414c530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024649000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f64396a7164716b6c6d396c78362e636c6f756466726f6e742e6e65742f666f7572696d6d6f7274616c732f00000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): FOURIMMORTALS
Arg [1] : _symbol (string): FI
Arg [2] : _revealedURI (string): https://d9jqdqklm9lx6.cloudfront.net/fourimmortals/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 464f5552494d4d4f5254414c5300000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4649000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000033
Arg [8] : 68747470733a2f2f64396a7164716b6c6d396c78362e636c6f756466726f6e74
Arg [9] : 2e6e65742f666f7572696d6d6f7274616c732f00000000000000000000000000


Deployed Bytecode Sourcemap

57024:5522:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24525:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25427:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31910:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31351:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57174:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61612:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21178:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35617:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59490:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60312:79;;;;;;;;;;;;;:::i;:::-;;38530:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59618:686;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60847:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60940:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57332:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26820:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22362:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;57573:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61845:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61050:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25603:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57139:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60513:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32468:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57207:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57451:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62016:253;;;;;;;;;;;;;:::i;:::-;;57364:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57842:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57240:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39313:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57961:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60731:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61172:432;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57068:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58193:1057;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60627:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32933:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61707:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57275:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24525:639;24610:4;24949:10;24934:25;;:11;:25;;;;:102;;;;25026:10;25011:25;;:11;:25;;;;24934:102;:179;;;;25103:10;25088:25;;:11;:25;;;;24934:179;24914:199;;24525:639;;;:::o;25427:100::-;25481:13;25514:5;25507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25427:100;:::o;31910:218::-;31986:7;32011:16;32019:7;32011;:16::i;:::-;32006:64;;32036:34;;;;;;;;;;;;;;32006:64;32090:15;:24;32106:7;32090:24;;;;;;;;;;;:30;;;;;;;;;;;;32083:37;;31910:218;;;:::o;31351:400::-;31432:13;31448:16;31456:7;31448;:16::i;:::-;31432:32;;31504:5;31481:28;;:19;:17;:19::i;:::-;:28;;;31477:175;;31529:44;31546:5;31553:19;:17;:19::i;:::-;31529:16;:44::i;:::-;31524:128;;31601:35;;;;;;;;;;;;;;31524:128;31477:175;31697:2;31664:15;:24;31680:7;31664:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31735:7;31731:2;31715:28;;31724:5;31715:28;;;;;;;;;;;;31421:330;31351:400;;:::o;57174:26::-;;;;:::o;61612:83::-;4511:13;:11;:13::i;:::-;61681:6:::1;61672;;:15;;;;;;;;;;;;;;;;;;61612:83:::0;:::o;21178:323::-;21239:7;21467:15;:13;:15::i;:::-;21452:12;;21436:13;;:28;:46;21429:53;;21178:323;:::o;35617:2817::-;35751:27;35781;35800:7;35781:18;:27::i;:::-;35751:57;;35866:4;35825:45;;35841:19;35825:45;;;35821:86;;35879:28;;;;;;;;;;;;;;35821:86;35921:27;35950:23;35977:35;36004:7;35977:26;:35::i;:::-;35920:92;;;;36112:68;36137:15;36154:4;36160:19;:17;:19::i;:::-;36112:24;:68::i;:::-;36107:180;;36200:43;36217:4;36223:19;:17;:19::i;:::-;36200:16;:43::i;:::-;36195:92;;36252:35;;;;;;;;;;;;;;36195:92;36107:180;36318:1;36304:16;;:2;:16;;;36300:52;;;36329:23;;;;;;;;;;;;;;36300:52;36365:43;36387:4;36393:2;36397:7;36406:1;36365:21;:43::i;:::-;36501:15;36498:160;;;36641:1;36620:19;36613:30;36498:160;37038:18;:24;37057:4;37038:24;;;;;;;;;;;;;;;;37036:26;;;;;;;;;;;;37107:18;:22;37126:2;37107:22;;;;;;;;;;;;;;;;37105:24;;;;;;;;;;;37429:146;37466:2;37515:45;37530:4;37536:2;37540:19;37515:14;:45::i;:::-;17577:8;37487:73;37429:18;:146::i;:::-;37400:17;:26;37418:7;37400:26;;;;;;;;;;;:175;;;;37746:1;17577:8;37695:19;:47;:52;37691:627;;;37768:19;37800:1;37790:7;:11;37768:33;;37957:1;37923:17;:30;37941:11;37923:30;;;;;;;;;;;;:35;37919:384;;;38061:13;;38046:11;:28;38042:242;;38241:19;38208:17;:30;38226:11;38208:30;;;;;;;;;;;:52;;;;38042:242;37919:384;37749:569;37691:627;38365:7;38361:2;38346:27;;38355:4;38346:27;;;;;;;;;;;;38384:42;38405:4;38411:2;38415:7;38424:1;38384:20;:42::i;:::-;35740:2694;;;35617:2817;;;:::o;59490:120::-;59560:7;59596:6;59587;:15;;;;:::i;:::-;59580:22;;59490:120;;;;:::o;60312:79::-;4511:13;:11;:13::i;:::-;60379:4:::1;60365:11;;:18;;;;;;;;;;;;;;;;;;60312:79::o:0;38530:185::-;38668:39;38685:4;38691:2;38695:7;38668:39;;;;;;;;;;;;:16;:39::i;:::-;38530:185;;;:::o;59618:686::-;59678:16;59712:23;59738:17;59748:6;59738:9;:17::i;:::-;59712:43;;59766:30;59813:15;59799:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59766:63;;59840:22;59865:1;59840:26;;59877:23;59917:347;59942:15;59924;:33;:64;;;;;57104:5;59961:14;:27;;59924:64;59917:347;;;60005:25;60033:23;60041:14;60033:7;:23::i;:::-;60005:51;;60096:6;60075:27;;:17;:27;;;60071:151;;;60156:14;60123:13;60137:15;60123:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;60189:17;;;;;:::i;:::-;;;;60071:151;60236:16;;;;;:::i;:::-;;;;59990:274;59917:347;;;60283:13;60276:20;;;;;;59618:686;;;:::o;60847:85::-;4511:13;:11;:13::i;:::-;60920:4:::1;60909:8;:15;;;;60847:85:::0;:::o;60940:102::-;4511:13;:11;:13::i;:::-;61026:8:::1;61012:11;:22;;;;;;;;;;;;:::i;:::-;;60940:102:::0;:::o;57332:25::-;;;;;;;;;;;;;:::o;26820:152::-;26892:7;26935:27;26954:7;26935:18;:27::i;:::-;26912:52;;26820:152;;;:::o;22362:233::-;22434:7;22475:1;22458:19;;:5;:19;;;22454:60;;;22486:28;;;;;;;;;;;;;;22454:60;16521:13;22532:18;:25;22551:5;22532:25;;;;;;;;;;;;;;;;:55;22525:62;;22362:233;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;57573:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;61845:146::-;4511:13;:11;:13::i;:::-;61933:8:::1;62339:6;;;;;;;;;;;62338:7;62330:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;57104:5;62403:8;62387:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;62379:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;62489:10;62476:23;;:9;:23;;;62468:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;61954:29:::2;61964:8;61974;61954:9;:29::i;:::-;4535:1:::1;61845:146:::0;;:::o;61050:114::-;4511:13;:11;:13::i;:::-;61144:12:::1;61130:11;:26;;;;;;;;;;;;:::i;:::-;;61050:114:::0;:::o;25603:104::-;25659:13;25692:7;25685:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25603:104;:::o;57139:28::-;;;;:::o;60513:106::-;4511:13;:11;:13::i;:::-;60603:8:::1;60587:13;:24;;;;;;;;;;;;:::i;:::-;;60513:106:::0;:::o;32468:308::-;32579:19;:17;:19::i;:::-;32567:31;;:8;:31;;;32563:61;;;32607:17;;;;;;;;;;;;;;32563:61;32689:8;32637:18;:39;32656:19;:17;:19::i;:::-;32637:39;;;;;;;;;;;;;;;:49;32677:8;32637:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32749:8;32713:55;;32728:19;:17;:19::i;:::-;32713:55;;;32759:8;32713:55;;;;;;:::i;:::-;;;;;;;;32468:308;;:::o;57207:26::-;;;;:::o;57451:40::-;;;;:::o;62016:253::-;4511:13;:11;:13::i;:::-;62104:1:::1;62080:21;:25;62072:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;62147:12;62165:10;:15;;62188:21;62165:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62146:68;;;62233:7;62225:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;62061:208;62016:253::o:0;57364:48::-;;;;;;;;;;;;;;;;;:::o;57842:111::-;4511:13;:11;:13::i;:::-;57914:31:::1;57924:10;57936:8;57914:9;:31::i;:::-;57842:111:::0;:::o;57240:28::-;;;;:::o;39313:399::-;39480:31;39493:4;39499:2;39503:7;39480:12;:31::i;:::-;39544:1;39526:2;:14;;;:19;39522:183;;39565:56;39596:4;39602:2;39606:7;39615:5;39565:30;:56::i;:::-;39560:145;;39649:40;;;;;;;;;;;;;;39560:145;39522:183;39313:399;;;;:::o;57961:224::-;4511:13;:11;:13::i;:::-;58064:9:::1;58059:119;58083:5;:12;58079:1;:16;58059:119;;;58117:49;58134:10;58146:5;58152:1;58146:8;;;;;;;;:::i;:::-;;;;;;;;58156:6;58163:1;58156:9;;;;;;;;:::i;:::-;;;;;;;;58117:16;:49::i;:::-;58097:3;;;;;:::i;:::-;;;;58059:119;;;;57961:224:::0;;:::o;60731:108::-;4511:13;:11;:13::i;:::-;60819:12:::1;60805:11;:26;;;;60731:108:::0;:::o;61172:432::-;61238:13;61374:4;61359:19;;:11;;;;;;;;;;;:19;;;61355:242;;;61425:11;61438:26;61455:8;61438:16;:26::i;:::-;61408:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61394:81;;;;61355:242;61539:14;61555:19;61572:1;61555:16;:19::i;:::-;61522:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61508:77;;61172:432;;;;:::o;57068:41::-;57104:5;57068:41;:::o;58193:1057::-;58259:8;62339:6;;;;;;;;;;;62338:7;62330:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;57104:5;62403:8;62387:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;62379:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;62489:10;62476:23;;:9;:23;;;62468:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;58300:13:::1;:11;:13::i;:::-;57104:5;58288:25;58280:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;58337:17;58357:13;:25;58371:10;58357:25;;;;;;;;;;;;;;;;58337:45;;58425:8;;58413;58401:9;:20;;;;:::i;:::-;:32;;58393:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;58518:1;58505:9;:14;58501:742;;;58556:1;58544:8;:13;58536:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58613:13;58666:27;58677:5;58684:8;58666:10;:27::i;:::-;58653:9;:40;;58645:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;58750:19;58763:5;58750:12;:19::i;:::-;58812:8;58784:13;:25;58798:10;58784:25;;;;;;;;;;;;;;;:36;;;;58835:31;58845:10;58857:8;58835:9;:31::i;:::-;58521:357;58501:742;;;58927:13;58951:11;;58927:36;;59010:27;59021:5;59028:8;59010:10;:27::i;:::-;58997:9;:40;;58989:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;59092:28;59111:8;59105:5;:14;;;;:::i;:::-;59092:12;:28::i;:::-;59176:8;59164:9;:20;;;;:::i;:::-;59135:13;:25;59149:10;59135:25;;;;;;;;;;;;;;;:50;;;;59200:31;59210:10;59222:8;59200:9;:31::i;:::-;58884:359;58501:742;58269:981;58193:1057:::0;;:::o;60627:96::-;60671:13;60704:11;60697:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60627:96;:::o;32933:164::-;33030:4;33054:18;:25;33073:5;33054:25;;;;;;;;;;;;;;;:35;33080:8;33054:35;;;;;;;;;;;;;;;;;;;;;;;;;33047:42;;32933:164;;;;:::o;61707:126::-;4511:13;:11;:13::i;:::-;61810:15:::1;61793:14;:32;;;;;;;;;;;;:::i;:::-;;61707:126:::0;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;57275:50::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33355:282::-;33420:4;33476:7;33457:15;:13;:15::i;:::-;:26;;:66;;;;;33510:13;;33500:7;:23;33457:66;:153;;;;;33609:1;17297:8;33561:17;:26;33579:7;33561:26;;;;;;;;;;;;:44;:49;33457:153;33437:173;;33355:282;;;:::o;55121:105::-;55181:7;55208:10;55201:17;;55121:105;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;20694:92::-;20750:7;20694:92;:::o;27975:1275::-;28042:7;28062:12;28077:7;28062:22;;28145:4;28126:15;:13;:15::i;:::-;:23;28122:1061;;28179:13;;28172:4;:20;28168:1015;;;28217:14;28234:17;:23;28252:4;28234:23;;;;;;;;;;;;28217:40;;28351:1;17297:8;28323:6;:24;:29;28319:845;;;28988:113;29005:1;28995:6;:11;28988:113;;;29048:17;:25;29066:6;;;;;;;29048:25;;;;;;;;;;;;29039:34;;28988:113;;;29134:6;29127:13;;;;;;28319:845;28194:989;28168:1015;28122:1061;29211:31;;;;;;;;;;;;;;27975:1275;;;;:::o;34518:479::-;34620:27;34649:23;34690:38;34731:15;:24;34747:7;34731:24;;;;;;;;;;;34690:65;;34902:18;34879:41;;34959:19;34953:26;34934:45;;34864:126;34518:479;;;:::o;33746:659::-;33895:11;34060:16;34053:5;34049:28;34040:37;;34220:16;34209:9;34205:32;34192:45;;34370:15;34359:9;34356:30;34348:5;34337:9;34334:20;34331:56;34321:66;;33746:659;;;;;:::o;40374:159::-;;;;;:::o;54430:311::-;54565:7;54585:16;17701:3;54611:19;:41;;54585:68;;17701:3;54679:31;54690:4;54696:2;54700:9;54679:10;:31::i;:::-;54671:40;;:62;;54664:69;;;54430:311;;;;;:::o;29798:450::-;29878:14;30046:16;30039:5;30035:28;30026:37;;30223:5;30209:11;30184:23;30180:41;30177:52;30170:5;30167:63;30157:73;;29798:450;;;;:::o;41198:158::-;;;;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;48953:112::-;49030:27;49040:2;49044:8;49030:27;;;;;;;;;;;;:9;:27::i;:::-;48953:112;;:::o;41796:716::-;41959:4;42005:2;41980:45;;;42026:19;:17;:19::i;:::-;42047:4;42053:7;42062:5;41980:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41976:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42280:1;42263:6;:13;:18;42259:235;;;42309:40;;;;;;;;;;;;;;42259:235;42452:6;42446:13;42437:6;42433:2;42429:15;42422:38;41976:529;42149:54;;;42139:64;;;:6;:64;;;;42132:71;;;41796:716;;;;;;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;59258:224::-;59335:5;59322:9;:18;;59314:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;59394:5;59382:9;:17;59378:97;;;59424:10;59416:28;;:47;59457:5;59445:9;:17;;;;:::i;:::-;59416:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59378:97;59258:224;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;54131:147::-;54268:6;54131:147;;;;;:::o;48180:689::-;48311:19;48317:2;48321:8;48311:5;:19::i;:::-;48390:1;48372:2;:14;;;:19;48368:483;;48412:11;48426:13;;48412:27;;48458:13;48480:8;48474:3;:14;48458:30;;48507:233;48538:62;48577:1;48581:2;48585:7;;;;;;48594:5;48538:30;:62::i;:::-;48533:167;;48636:40;;;;;;;;;;;;;;48533:167;48735:3;48727:5;:11;48507:233;;48822:3;48805:13;;:20;48801:34;;48827:8;;;48801:34;48393:458;;48368:483;48180:689;;;:::o;42974:2454::-;43047:20;43070:13;;43047:36;;43110:1;43098:8;:13;43094:44;;;43120:18;;;;;;;;;;;;;;43094:44;43151:61;43181:1;43185:2;43189:12;43203:8;43151:21;:61::i;:::-;43695:1;16659:2;43665:1;:26;;43664:32;43652:8;:45;43626:18;:22;43645:2;43626:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43974:139;44011:2;44065:33;44088:1;44092:2;44096:1;44065:14;:33::i;:::-;44032:30;44053:8;44032:20;:30::i;:::-;:66;43974:18;:139::i;:::-;43940:17;:31;43958:12;43940:31;;;;;;;;;;;:173;;;;44130:16;44161:11;44190:8;44175:12;:23;44161:37;;44445:16;44441:2;44437:25;44425:37;;44817:12;44777:8;44736:1;44674:25;44615:1;44554;44527:335;44942:1;44928:12;44924:20;44882:346;44983:3;44974:7;44971:16;44882:346;;45201:7;45191:8;45188:1;45161:25;45158:1;45155;45150:59;45036:1;45027:7;45023:15;45012:26;;44882:346;;;44886:77;45273:1;45261:8;:13;45257:45;;;45283:19;;;;;;;;;;;;;;45257:45;45335:3;45319:13;:19;;;;43400:1950;;45360:60;45389:1;45393:2;45397:12;45411:8;45360:20;:60::i;:::-;43036:2392;42974:2454;;:::o;30350:324::-;30420:14;30653:1;30643:8;30640:15;30614:24;30610:46;30600:56;;30350:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:137::-;3446:5;3484:6;3471:20;3462:29;;3500:32;3526:5;3500:32;:::i;:::-;3401:137;;;;:::o;3544:141::-;3600:5;3631:6;3625:13;3616:22;;3647:32;3673:5;3647:32;:::i;:::-;3544:141;;;;:::o;3704:338::-;3759:5;3808:3;3801:4;3793:6;3789:17;3785:27;3775:122;;3816:79;;:::i;:::-;3775:122;3933:6;3920:20;3958:78;4032:3;4024:6;4017:4;4009:6;4005:17;3958:78;:::i;:::-;3949:87;;3765:277;3704:338;;;;:::o;4062:340::-;4118:5;4167:3;4160:4;4152:6;4148:17;4144:27;4134:122;;4175:79;;:::i;:::-;4134:122;4292:6;4279:20;4317:79;4392:3;4384:6;4377:4;4369:6;4365:17;4317:79;:::i;:::-;4308:88;;4124:278;4062:340;;;;:::o;4408:139::-;4454:5;4492:6;4479:20;4470:29;;4508:33;4535:5;4508:33;:::i;:::-;4408:139;;;;:::o;4553:329::-;4612:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:119;;;4667:79;;:::i;:::-;4629:119;4787:1;4812:53;4857:7;4848:6;4837:9;4833:22;4812:53;:::i;:::-;4802:63;;4758:117;4553:329;;;;:::o;4888:474::-;4956:6;4964;5013:2;5001:9;4992:7;4988:23;4984:32;4981:119;;;5019:79;;:::i;:::-;4981:119;5139:1;5164:53;5209:7;5200:6;5189:9;5185:22;5164:53;:::i;:::-;5154:63;;5110:117;5266:2;5292:53;5337:7;5328:6;5317:9;5313:22;5292:53;:::i;:::-;5282:63;;5237:118;4888:474;;;;;:::o;5368:619::-;5445:6;5453;5461;5510:2;5498:9;5489:7;5485:23;5481:32;5478:119;;;5516:79;;:::i;:::-;5478:119;5636:1;5661:53;5706:7;5697:6;5686:9;5682:22;5661:53;:::i;:::-;5651:63;;5607:117;5763:2;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5734:118;5891:2;5917:53;5962:7;5953:6;5942:9;5938:22;5917:53;:::i;:::-;5907:63;;5862:118;5368:619;;;;;:::o;5993:943::-;6088:6;6096;6104;6112;6161:3;6149:9;6140:7;6136:23;6132:33;6129:120;;;6168:79;;:::i;:::-;6129:120;6288:1;6313:53;6358:7;6349:6;6338:9;6334:22;6313:53;:::i;:::-;6303:63;;6259:117;6415:2;6441:53;6486:7;6477:6;6466:9;6462:22;6441:53;:::i;:::-;6431:63;;6386:118;6543:2;6569:53;6614:7;6605:6;6594:9;6590:22;6569:53;:::i;:::-;6559:63;;6514:118;6699:2;6688:9;6684:18;6671:32;6730:18;6722:6;6719:30;6716:117;;;6752:79;;:::i;:::-;6716:117;6857:62;6911:7;6902:6;6891:9;6887:22;6857:62;:::i;:::-;6847:72;;6642:287;5993:943;;;;;;;:::o;6942:468::-;7007:6;7015;7064:2;7052:9;7043:7;7039:23;7035:32;7032:119;;;7070:79;;:::i;:::-;7032:119;7190:1;7215:53;7260:7;7251:6;7240:9;7236:22;7215:53;:::i;:::-;7205:63;;7161:117;7317:2;7343:50;7385:7;7376:6;7365:9;7361:22;7343:50;:::i;:::-;7333:60;;7288:115;6942:468;;;;;:::o;7416:474::-;7484:6;7492;7541:2;7529:9;7520:7;7516:23;7512:32;7509:119;;;7547:79;;:::i;:::-;7509:119;7667:1;7692:53;7737:7;7728:6;7717:9;7713:22;7692:53;:::i;:::-;7682:63;;7638:117;7794:2;7820:53;7865:7;7856:6;7845:9;7841:22;7820:53;:::i;:::-;7810:63;;7765:118;7416:474;;;;;:::o;7896:894::-;8014:6;8022;8071:2;8059:9;8050:7;8046:23;8042:32;8039:119;;;8077:79;;:::i;:::-;8039:119;8225:1;8214:9;8210:17;8197:31;8255:18;8247:6;8244:30;8241:117;;;8277:79;;:::i;:::-;8241:117;8382:78;8452:7;8443:6;8432:9;8428:22;8382:78;:::i;:::-;8372:88;;8168:302;8537:2;8526:9;8522:18;8509:32;8568:18;8560:6;8557:30;8554:117;;;8590:79;;:::i;:::-;8554:117;8695:78;8765:7;8756:6;8745:9;8741:22;8695:78;:::i;:::-;8685:88;;8480:303;7896:894;;;;;:::o;8796:323::-;8852:6;8901:2;8889:9;8880:7;8876:23;8872:32;8869:119;;;8907:79;;:::i;:::-;8869:119;9027:1;9052:50;9094:7;9085:6;9074:9;9070:22;9052:50;:::i;:::-;9042:60;;8998:114;8796:323;;;;:::o;9125:327::-;9183:6;9232:2;9220:9;9211:7;9207:23;9203:32;9200:119;;;9238:79;;:::i;:::-;9200:119;9358:1;9383:52;9427:7;9418:6;9407:9;9403:22;9383:52;:::i;:::-;9373:62;;9329:116;9125:327;;;;:::o;9458:349::-;9527:6;9576:2;9564:9;9555:7;9551:23;9547:32;9544:119;;;9582:79;;:::i;:::-;9544:119;9702:1;9727:63;9782:7;9773:6;9762:9;9758:22;9727:63;:::i;:::-;9717:73;;9673:127;9458:349;;;;:::o;9813:509::-;9882:6;9931:2;9919:9;9910:7;9906:23;9902:32;9899:119;;;9937:79;;:::i;:::-;9899:119;10085:1;10074:9;10070:17;10057:31;10115:18;10107:6;10104:30;10101:117;;;10137:79;;:::i;:::-;10101:117;10242:63;10297:7;10288:6;10277:9;10273:22;10242:63;:::i;:::-;10232:73;;10028:287;9813:509;;;;:::o;10328:329::-;10387:6;10436:2;10424:9;10415:7;10411:23;10407:32;10404:119;;;10442:79;;:::i;:::-;10404:119;10562:1;10587:53;10632:7;10623:6;10612:9;10608:22;10587:53;:::i;:::-;10577:63;;10533:117;10328:329;;;;:::o;10663:474::-;10731:6;10739;10788:2;10776:9;10767:7;10763:23;10759:32;10756:119;;;10794:79;;:::i;:::-;10756:119;10914:1;10939:53;10984:7;10975:6;10964:9;10960:22;10939:53;:::i;:::-;10929:63;;10885:117;11041:2;11067:53;11112:7;11103:6;11092:9;11088:22;11067:53;:::i;:::-;11057:63;;11012:118;10663:474;;;;;:::o;11143:::-;11211:6;11219;11268:2;11256:9;11247:7;11243:23;11239:32;11236:119;;;11274:79;;:::i;:::-;11236:119;11394:1;11419:53;11464:7;11455:6;11444:9;11440:22;11419:53;:::i;:::-;11409:63;;11365:117;11521:2;11547:53;11592:7;11583:6;11572:9;11568:22;11547:53;:::i;:::-;11537:63;;11492:118;11143:474;;;;;:::o;11623:179::-;11692:10;11713:46;11755:3;11747:6;11713:46;:::i;:::-;11791:4;11786:3;11782:14;11768:28;;11623:179;;;;:::o;11808:118::-;11895:24;11913:5;11895:24;:::i;:::-;11890:3;11883:37;11808:118;;:::o;11962:732::-;12081:3;12110:54;12158:5;12110:54;:::i;:::-;12180:86;12259:6;12254:3;12180:86;:::i;:::-;12173:93;;12290:56;12340:5;12290:56;:::i;:::-;12369:7;12400:1;12385:284;12410:6;12407:1;12404:13;12385:284;;;12486:6;12480:13;12513:63;12572:3;12557:13;12513:63;:::i;:::-;12506:70;;12599:60;12652:6;12599:60;:::i;:::-;12589:70;;12445:224;12432:1;12429;12425:9;12420:14;;12385:284;;;12389:14;12685:3;12678:10;;12086:608;;;11962:732;;;;:::o;12700:109::-;12781:21;12796:5;12781:21;:::i;:::-;12776:3;12769:34;12700:109;;:::o;12815:360::-;12901:3;12929:38;12961:5;12929:38;:::i;:::-;12983:70;13046:6;13041:3;12983:70;:::i;:::-;12976:77;;13062:52;13107:6;13102:3;13095:4;13088:5;13084:16;13062:52;:::i;:::-;13139:29;13161:6;13139:29;:::i;:::-;13134:3;13130:39;13123:46;;12905:270;12815:360;;;;:::o;13181:364::-;13269:3;13297:39;13330:5;13297:39;:::i;:::-;13352:71;13416:6;13411:3;13352:71;:::i;:::-;13345:78;;13432:52;13477:6;13472:3;13465:4;13458:5;13454:16;13432:52;:::i;:::-;13509:29;13531:6;13509:29;:::i;:::-;13504:3;13500:39;13493:46;;13273:272;13181:364;;;;:::o;13551:377::-;13657:3;13685:39;13718:5;13685:39;:::i;:::-;13740:89;13822:6;13817:3;13740:89;:::i;:::-;13733:96;;13838:52;13883:6;13878:3;13871:4;13864:5;13860:16;13838:52;:::i;:::-;13915:6;13910:3;13906:16;13899:23;;13661:267;13551:377;;;;:::o;13958:845::-;14061:3;14098:5;14092:12;14127:36;14153:9;14127:36;:::i;:::-;14179:89;14261:6;14256:3;14179:89;:::i;:::-;14172:96;;14299:1;14288:9;14284:17;14315:1;14310:137;;;;14461:1;14456:341;;;;14277:520;;14310:137;14394:4;14390:9;14379;14375:25;14370:3;14363:38;14430:6;14425:3;14421:16;14414:23;;14310:137;;14456:341;14523:38;14555:5;14523:38;:::i;:::-;14583:1;14597:154;14611:6;14608:1;14605:13;14597:154;;;14685:7;14679:14;14675:1;14670:3;14666:11;14659:35;14735:1;14726:7;14722:15;14711:26;;14633:4;14630:1;14626:12;14621:17;;14597:154;;;14780:6;14775:3;14771:16;14764:23;;14463:334;;14277:520;;14065:738;;13958:845;;;;:::o;14809:366::-;14951:3;14972:67;15036:2;15031:3;14972:67;:::i;:::-;14965:74;;15048:93;15137:3;15048:93;:::i;:::-;15166:2;15161:3;15157:12;15150:19;;14809:366;;;:::o;15181:::-;15323:3;15344:67;15408:2;15403:3;15344:67;:::i;:::-;15337:74;;15420:93;15509:3;15420:93;:::i;:::-;15538:2;15533:3;15529:12;15522:19;;15181:366;;;:::o;15553:::-;15695:3;15716:67;15780:2;15775:3;15716:67;:::i;:::-;15709:74;;15792:93;15881:3;15792:93;:::i;:::-;15910:2;15905:3;15901:12;15894:19;;15553:366;;;:::o;15925:::-;16067:3;16088:67;16152:2;16147:3;16088:67;:::i;:::-;16081:74;;16164:93;16253:3;16164:93;:::i;:::-;16282:2;16277:3;16273:12;16266:19;;15925:366;;;:::o;16297:365::-;16439:3;16460:66;16524:1;16519:3;16460:66;:::i;:::-;16453:73;;16535:93;16624:3;16535:93;:::i;:::-;16653:2;16648:3;16644:12;16637:19;;16297:365;;;:::o;16668:366::-;16810:3;16831:67;16895:2;16890:3;16831:67;:::i;:::-;16824:74;;16907:93;16996:3;16907:93;:::i;:::-;17025:2;17020:3;17016:12;17009:19;;16668:366;;;:::o;17040:::-;17182:3;17203:67;17267:2;17262:3;17203:67;:::i;:::-;17196:74;;17279:93;17368:3;17279:93;:::i;:::-;17397:2;17392:3;17388:12;17381:19;;17040:366;;;:::o;17412:::-;17554:3;17575:67;17639:2;17634:3;17575:67;:::i;:::-;17568:74;;17651:93;17740:3;17651:93;:::i;:::-;17769:2;17764:3;17760:12;17753:19;;17412:366;;;:::o;17784:400::-;17944:3;17965:84;18047:1;18042:3;17965:84;:::i;:::-;17958:91;;18058:93;18147:3;18058:93;:::i;:::-;18176:1;18171:3;18167:11;18160:18;;17784:400;;;:::o;18190:366::-;18332:3;18353:67;18417:2;18412:3;18353:67;:::i;:::-;18346:74;;18429:93;18518:3;18429:93;:::i;:::-;18547:2;18542:3;18538:12;18531:19;;18190:366;;;:::o;18562:398::-;18721:3;18742:83;18823:1;18818:3;18742:83;:::i;:::-;18735:90;;18834:93;18923:3;18834:93;:::i;:::-;18952:1;18947:3;18943:11;18936:18;;18562:398;;;:::o;18966:366::-;19108:3;19129:67;19193:2;19188:3;19129:67;:::i;:::-;19122:74;;19205:93;19294:3;19205:93;:::i;:::-;19323:2;19318:3;19314:12;19307:19;;18966:366;;;:::o;19338:::-;19480:3;19501:67;19565:2;19560:3;19501:67;:::i;:::-;19494:74;;19577:93;19666:3;19577:93;:::i;:::-;19695:2;19690:3;19686:12;19679:19;;19338:366;;;:::o;19710:::-;19852:3;19873:67;19937:2;19932:3;19873:67;:::i;:::-;19866:74;;19949:93;20038:3;19949:93;:::i;:::-;20067:2;20062:3;20058:12;20051:19;;19710:366;;;:::o;20082:108::-;20159:24;20177:5;20159:24;:::i;:::-;20154:3;20147:37;20082:108;;:::o;20196:118::-;20283:24;20301:5;20283:24;:::i;:::-;20278:3;20271:37;20196:118;;:::o;20320:695::-;20598:3;20620:92;20708:3;20699:6;20620:92;:::i;:::-;20613:99;;20729:95;20820:3;20811:6;20729:95;:::i;:::-;20722:102;;20841:148;20985:3;20841:148;:::i;:::-;20834:155;;21006:3;20999:10;;20320:695;;;;;:::o;21021:379::-;21205:3;21227:147;21370:3;21227:147;:::i;:::-;21220:154;;21391:3;21384:10;;21021:379;;;:::o;21406:222::-;21499:4;21537:2;21526:9;21522:18;21514:26;;21550:71;21618:1;21607:9;21603:17;21594:6;21550:71;:::i;:::-;21406:222;;;;:::o;21634:640::-;21829:4;21867:3;21856:9;21852:19;21844:27;;21881:71;21949:1;21938:9;21934:17;21925:6;21881:71;:::i;:::-;21962:72;22030:2;22019:9;22015:18;22006:6;21962:72;:::i;:::-;22044;22112:2;22101:9;22097:18;22088:6;22044:72;:::i;:::-;22163:9;22157:4;22153:20;22148:2;22137:9;22133:18;22126:48;22191:76;22262:4;22253:6;22191:76;:::i;:::-;22183:84;;21634:640;;;;;;;:::o;22280:373::-;22423:4;22461:2;22450:9;22446:18;22438:26;;22510:9;22504:4;22500:20;22496:1;22485:9;22481:17;22474:47;22538:108;22641:4;22632:6;22538:108;:::i;:::-;22530:116;;22280:373;;;;:::o;22659:210::-;22746:4;22784:2;22773:9;22769:18;22761:26;;22797:65;22859:1;22848:9;22844:17;22835:6;22797:65;:::i;:::-;22659:210;;;;:::o;22875:313::-;22988:4;23026:2;23015:9;23011:18;23003:26;;23075:9;23069:4;23065:20;23061:1;23050:9;23046:17;23039:47;23103:78;23176:4;23167:6;23103:78;:::i;:::-;23095:86;;22875:313;;;;:::o;23194:419::-;23360:4;23398:2;23387:9;23383:18;23375:26;;23447:9;23441:4;23437:20;23433:1;23422:9;23418:17;23411:47;23475:131;23601:4;23475:131;:::i;:::-;23467:139;;23194:419;;;:::o;23619:::-;23785:4;23823:2;23812:9;23808:18;23800:26;;23872:9;23866:4;23862:20;23858:1;23847:9;23843:17;23836:47;23900:131;24026:4;23900:131;:::i;:::-;23892:139;;23619:419;;;:::o;24044:::-;24210:4;24248:2;24237:9;24233:18;24225:26;;24297:9;24291:4;24287:20;24283:1;24272:9;24268:17;24261:47;24325:131;24451:4;24325:131;:::i;:::-;24317:139;;24044:419;;;:::o;24469:::-;24635:4;24673:2;24662:9;24658:18;24650:26;;24722:9;24716:4;24712:20;24708:1;24697:9;24693:17;24686:47;24750:131;24876:4;24750:131;:::i;:::-;24742:139;;24469:419;;;:::o;24894:::-;25060:4;25098:2;25087:9;25083:18;25075:26;;25147:9;25141:4;25137:20;25133:1;25122:9;25118:17;25111:47;25175:131;25301:4;25175:131;:::i;:::-;25167:139;;24894:419;;;:::o;25319:::-;25485:4;25523:2;25512:9;25508:18;25500:26;;25572:9;25566:4;25562:20;25558:1;25547:9;25543:17;25536:47;25600:131;25726:4;25600:131;:::i;:::-;25592:139;;25319:419;;;:::o;25744:::-;25910:4;25948:2;25937:9;25933:18;25925:26;;25997:9;25991:4;25987:20;25983:1;25972:9;25968:17;25961:47;26025:131;26151:4;26025:131;:::i;:::-;26017:139;;25744:419;;;:::o;26169:::-;26335:4;26373:2;26362:9;26358:18;26350:26;;26422:9;26416:4;26412:20;26408:1;26397:9;26393:17;26386:47;26450:131;26576:4;26450:131;:::i;:::-;26442:139;;26169:419;;;:::o;26594:::-;26760:4;26798:2;26787:9;26783:18;26775:26;;26847:9;26841:4;26837:20;26833:1;26822:9;26818:17;26811:47;26875:131;27001:4;26875:131;:::i;:::-;26867:139;;26594:419;;;:::o;27019:::-;27185:4;27223:2;27212:9;27208:18;27200:26;;27272:9;27266:4;27262:20;27258:1;27247:9;27243:17;27236:47;27300:131;27426:4;27300:131;:::i;:::-;27292:139;;27019:419;;;:::o;27444:::-;27610:4;27648:2;27637:9;27633:18;27625:26;;27697:9;27691:4;27687:20;27683:1;27672:9;27668:17;27661:47;27725:131;27851:4;27725:131;:::i;:::-;27717:139;;27444:419;;;:::o;27869:::-;28035:4;28073:2;28062:9;28058:18;28050:26;;28122:9;28116:4;28112:20;28108:1;28097:9;28093:17;28086:47;28150:131;28276:4;28150:131;:::i;:::-;28142:139;;27869:419;;;:::o;28294:222::-;28387:4;28425:2;28414:9;28410:18;28402:26;;28438:71;28506:1;28495:9;28491:17;28482:6;28438:71;:::i;:::-;28294:222;;;;:::o;28522:129::-;28556:6;28583:20;;:::i;:::-;28573:30;;28612:33;28640:4;28632:6;28612:33;:::i;:::-;28522:129;;;:::o;28657:75::-;28690:6;28723:2;28717:9;28707:19;;28657:75;:::o;28738:311::-;28815:4;28905:18;28897:6;28894:30;28891:56;;;28927:18;;:::i;:::-;28891:56;28977:4;28969:6;28965:17;28957:25;;29037:4;29031;29027:15;29019:23;;28738:311;;;:::o;29055:::-;29132:4;29222:18;29214:6;29211:30;29208:56;;;29244:18;;:::i;:::-;29208:56;29294:4;29286:6;29282:17;29274:25;;29354:4;29348;29344:15;29336:23;;29055:311;;;:::o;29372:307::-;29433:4;29523:18;29515:6;29512:30;29509:56;;;29545:18;;:::i;:::-;29509:56;29583:29;29605:6;29583:29;:::i;:::-;29575:37;;29667:4;29661;29657:15;29649:23;;29372:307;;;:::o;29685:308::-;29747:4;29837:18;29829:6;29826:30;29823:56;;;29859:18;;:::i;:::-;29823:56;29897:29;29919:6;29897:29;:::i;:::-;29889:37;;29981:4;29975;29971:15;29963:23;;29685:308;;;:::o;29999:132::-;30066:4;30089:3;30081:11;;30119:4;30114:3;30110:14;30102:22;;29999:132;;;:::o;30137:141::-;30186:4;30209:3;30201:11;;30232:3;30229:1;30222:14;30266:4;30263:1;30253:18;30245:26;;30137:141;;;:::o;30284:114::-;30351:6;30385:5;30379:12;30369:22;;30284:114;;;:::o;30404:98::-;30455:6;30489:5;30483:12;30473:22;;30404:98;;;:::o;30508:99::-;30560:6;30594:5;30588:12;30578:22;;30508:99;;;:::o;30613:113::-;30683:4;30715;30710:3;30706:14;30698:22;;30613:113;;;:::o;30732:184::-;30831:11;30865:6;30860:3;30853:19;30905:4;30900:3;30896:14;30881:29;;30732:184;;;;:::o;30922:168::-;31005:11;31039:6;31034:3;31027:19;31079:4;31074:3;31070:14;31055:29;;30922:168;;;;:::o;31096:147::-;31197:11;31234:3;31219:18;;31096:147;;;;:::o;31249:169::-;31333:11;31367:6;31362:3;31355:19;31407:4;31402:3;31398:14;31383:29;;31249:169;;;;:::o;31424:148::-;31526:11;31563:3;31548:18;;31424:148;;;;:::o;31578:305::-;31618:3;31637:20;31655:1;31637:20;:::i;:::-;31632:25;;31671:20;31689:1;31671:20;:::i;:::-;31666:25;;31825:1;31757:66;31753:74;31750:1;31747:81;31744:107;;;31831:18;;:::i;:::-;31744:107;31875:1;31872;31868:9;31861:16;;31578:305;;;;:::o;31889:185::-;31929:1;31946:20;31964:1;31946:20;:::i;:::-;31941:25;;31980:20;31998:1;31980:20;:::i;:::-;31975:25;;32019:1;32009:35;;32024:18;;:::i;:::-;32009:35;32066:1;32063;32059:9;32054:14;;31889:185;;;;:::o;32080:348::-;32120:7;32143:20;32161:1;32143:20;:::i;:::-;32138:25;;32177:20;32195:1;32177:20;:::i;:::-;32172:25;;32365:1;32297:66;32293:74;32290:1;32287:81;32282:1;32275:9;32268:17;32264:105;32261:131;;;32372:18;;:::i;:::-;32261:131;32420:1;32417;32413:9;32402:20;;32080:348;;;;:::o;32434:191::-;32474:4;32494:20;32512:1;32494:20;:::i;:::-;32489:25;;32528:20;32546:1;32528:20;:::i;:::-;32523:25;;32567:1;32564;32561:8;32558:34;;;32572:18;;:::i;:::-;32558:34;32617:1;32614;32610:9;32602:17;;32434:191;;;;:::o;32631:96::-;32668:7;32697:24;32715:5;32697:24;:::i;:::-;32686:35;;32631:96;;;:::o;32733:90::-;32767:7;32810:5;32803:13;32796:21;32785:32;;32733:90;;;:::o;32829:149::-;32865:7;32905:66;32898:5;32894:78;32883:89;;32829:149;;;:::o;32984:126::-;33021:7;33061:42;33054:5;33050:54;33039:65;;32984:126;;;:::o;33116:77::-;33153:7;33182:5;33171:16;;33116:77;;;:::o;33199:154::-;33283:6;33278:3;33273;33260:30;33345:1;33336:6;33331:3;33327:16;33320:27;33199:154;;;:::o;33359:307::-;33427:1;33437:113;33451:6;33448:1;33445:13;33437:113;;;33536:1;33531:3;33527:11;33521:18;33517:1;33512:3;33508:11;33501:39;33473:2;33470:1;33466:10;33461:15;;33437:113;;;33568:6;33565:1;33562:13;33559:101;;;33648:1;33639:6;33634:3;33630:16;33623:27;33559:101;33408:258;33359:307;;;:::o;33672:320::-;33716:6;33753:1;33747:4;33743:12;33733:22;;33800:1;33794:4;33790:12;33821:18;33811:81;;33877:4;33869:6;33865:17;33855:27;;33811:81;33939:2;33931:6;33928:14;33908:18;33905:38;33902:84;;;33958:18;;:::i;:::-;33902:84;33723:269;33672:320;;;:::o;33998:281::-;34081:27;34103:4;34081:27;:::i;:::-;34073:6;34069:40;34211:6;34199:10;34196:22;34175:18;34163:10;34160:34;34157:62;34154:88;;;34222:18;;:::i;:::-;34154:88;34262:10;34258:2;34251:22;34041:238;33998:281;;:::o;34285:233::-;34324:3;34347:24;34365:5;34347:24;:::i;:::-;34338:33;;34393:66;34386:5;34383:77;34380:103;;;34463:18;;:::i;:::-;34380:103;34510:1;34503:5;34499:13;34492:20;;34285:233;;;:::o;34524:176::-;34556:1;34573:20;34591:1;34573:20;:::i;:::-;34568:25;;34607:20;34625:1;34607:20;:::i;:::-;34602:25;;34646:1;34636:35;;34651:18;;:::i;:::-;34636:35;34692:1;34689;34685:9;34680:14;;34524:176;;;;:::o;34706:180::-;34754:77;34751:1;34744:88;34851:4;34848:1;34841:15;34875:4;34872:1;34865:15;34892:180;34940:77;34937:1;34930:88;35037:4;35034:1;35027:15;35061:4;35058:1;35051:15;35078:180;35126:77;35123:1;35116:88;35223:4;35220:1;35213:15;35247:4;35244:1;35237:15;35264:180;35312:77;35309:1;35302:88;35409:4;35406:1;35399:15;35433:4;35430:1;35423:15;35450:180;35498:77;35495:1;35488:88;35595:4;35592:1;35585:15;35619:4;35616:1;35609:15;35636:117;35745:1;35742;35735:12;35759:117;35868:1;35865;35858:12;35882:117;35991:1;35988;35981:12;36005:117;36114:1;36111;36104:12;36128:117;36237:1;36234;36227:12;36251:102;36292:6;36343:2;36339:7;36334:2;36327:5;36323:14;36319:28;36309:38;;36251:102;;;:::o;36359:178::-;36499:30;36495:1;36487:6;36483:14;36476:54;36359:178;:::o;36543:225::-;36683:34;36679:1;36671:6;36667:14;36660:58;36752:8;36747:2;36739:6;36735:15;36728:33;36543:225;:::o;36774:222::-;36914:34;36910:1;36902:6;36898:14;36891:58;36983:5;36978:2;36970:6;36966:15;36959:30;36774:222;:::o;37002:169::-;37142:21;37138:1;37130:6;37126:14;37119:45;37002:169;:::o;37177:158::-;37317:10;37313:1;37305:6;37301:14;37294:34;37177:158;:::o;37341:171::-;37481:23;37477:1;37469:6;37465:14;37458:47;37341:171;:::o;37518:223::-;37658:34;37654:1;37646:6;37642:14;37635:58;37727:6;37722:2;37714:6;37710:15;37703:31;37518:223;:::o;37747:175::-;37887:27;37883:1;37875:6;37871:14;37864:51;37747:175;:::o;37928:155::-;38068:7;38064:1;38056:6;38052:14;38045:31;37928:155;:::o;38089:182::-;38229:34;38225:1;38217:6;38213:14;38206:58;38089:182;:::o;38277:114::-;;:::o;38397:166::-;38537:18;38533:1;38525:6;38521:14;38514:42;38397:166;:::o;38569:172::-;38709:24;38705:1;38697:6;38693:14;38686:48;38569:172;:::o;38747:168::-;38887:20;38883:1;38875:6;38871:14;38864:44;38747:168;:::o;38921:122::-;38994:24;39012:5;38994:24;:::i;:::-;38987:5;38984:35;38974:63;;39033:1;39030;39023:12;38974:63;38921:122;:::o;39049:116::-;39119:21;39134:5;39119:21;:::i;:::-;39112:5;39109:32;39099:60;;39155:1;39152;39145:12;39099:60;39049:116;:::o;39171:120::-;39243:23;39260:5;39243:23;:::i;:::-;39236:5;39233:34;39223:62;;39281:1;39278;39271:12;39223:62;39171:120;:::o;39297:122::-;39370:24;39388:5;39370:24;:::i;:::-;39363:5;39360:35;39350:63;;39409:1;39406;39399:12;39350:63;39297:122;:::o

Swarm Source

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