ETH Price: $2,668.93 (+1.84%)

Token

 

Overview

Max Total Supply

1,004

Holders

485

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3
0x8fc6a814b532015a4ae67c778037b9a22f8120eb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FARM

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-10-07
*/

// SPDX-License-Identifier: MIT
// File: contracts/farm.sol


// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// 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.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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.3
// 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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    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 payable virtual override {
        address owner = ownerOf(tokenId);

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable 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 payable 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 payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                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 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // 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)
        }
    }
}



pragma solidity ^0.8.4;

contract FARM is ERC721A, Ownable, ReentrancyGuard {
  string public uriPrefix = '';

  uint256 public cost = 0.002 ether;
  uint256 public maxSupply = 6666;
  uint256 public maxMintAmountPerTx = 3;
  uint8   public maxFreePerWallet = 0;
  mapping(address => uint256) public _mintedFreeAmount;

  bool public paused = true;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol
  ) ERC721A(_tokenName, _tokenSymbol) {
    _safeMint(msg.sender, 66);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  modifier freeMintCountCompliance(uint256 _mintAmount) {
    require(_mintAmount == 1, 'Free mint amount must be equal to 1');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    require(_mintedFreeAmount[msg.sender] < maxFreePerWallet, 'Max free supply exceeded!');
    _;
  }

  function freeMint(uint256 _mintAmount) public payable freeMintCountCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');
    _mintedFreeAmount[msg.sender] = maxFreePerWallet;
    _safeMint(msg.sender, _mintAmount);
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');

    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _toString(_tokenId)))
        : '';
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","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":"maxFreePerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b929190620006c8565b5066071afd498d0000600b55611a0a600c556003600d556000600e60006101000a81548160ff021916908360ff1602179055506001601060006101000a81548160ff0219169083151502179055503480156200008657600080fd5b5060405162003beb38038062003beb8339818101604052810190620000ac91906200083f565b81818160029080519060200190620000c6929190620006c8565b508060039080519060200190620000df929190620006c8565b50620000f06200013b60201b60201c565b6000819055505050620001186200010c6200014060201b60201c565b6200014860201b60201c565b6001600981905550620001333360426200020e60201b60201c565b505062000b9f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002308282604051806020016040528060008152506200023460201b60201c565b5050565b620002468383620002e560201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620002e057600080549050600083820390505b6200028f6000868380600101945086620004ce60201b60201c565b620002c6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811062000274578160005414620002dd57600080fd5b50505b505050565b600080549050600082141562000327576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200033c60008483856200064060201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003cb83620003ad60008660006200064660201b60201c565b620003be856200067660201b60201c565b176200068660201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200046e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000431565b506000821415620004ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620004c96000848385620006b160201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620004fc620006b760201b60201c565b8786866040518563ffffffff1660e01b815260040162000520949392919062000927565b602060405180830381600087803b1580156200053b57600080fd5b505af19250505080156200056f57506040513d601f19601f820116820180604052508101906200056c91906200080d565b60015b620005ed573d8060008114620005a2576040519150601f19603f3d011682016040523d82523d6000602084013e620005a7565b606091505b50600081511415620005e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e862000665868684620006bf60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620006d69062000a96565b90600052602060002090601f016020900481019282620006fa576000855562000746565b82601f106200071557805160ff191683800117855562000746565b8280016001018555821562000746579182015b828111156200074557825182559160200191906001019062000728565b5b50905062000755919062000759565b5090565b5b80821115620007745760008160009055506001016200075a565b5090565b60006200078f6200078984620009a4565b6200097b565b905082815260208101848484011115620007ae57620007ad62000b65565b5b620007bb84828562000a60565b509392505050565b600081519050620007d48162000b85565b92915050565b600082601f830112620007f257620007f162000b60565b5b81516200080484826020860162000778565b91505092915050565b60006020828403121562000826576200082562000b6f565b5b60006200083684828501620007c3565b91505092915050565b6000806040838503121562000859576200085862000b6f565b5b600083015167ffffffffffffffff8111156200087a576200087962000b6a565b5b6200088885828601620007da565b925050602083015167ffffffffffffffff811115620008ac57620008ab62000b6a565b5b620008ba85828601620007da565b9150509250929050565b620008cf81620009f6565b82525050565b6000620008e282620009da565b620008ee8185620009e5565b93506200090081856020860162000a60565b6200090b8162000b74565b840191505092915050565b620009218162000a56565b82525050565b60006080820190506200093e6000830187620008c4565b6200094d6020830186620008c4565b6200095c604083018562000916565b8181036060830152620009708184620008d5565b905095945050505050565b6000620009876200099a565b905062000995828262000acc565b919050565b6000604051905090565b600067ffffffffffffffff821115620009c257620009c162000b31565b5b620009cd8262000b74565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000a038262000a36565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a8057808201518184015260208101905062000a63565b8381111562000a90576000848401525b50505050565b6000600282049050600182168062000aaf57607f821691505b6020821081141562000ac65762000ac562000b02565b5b50919050565b62000ad78262000b74565b810181811067ffffffffffffffff8211171562000af95762000af862000b31565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000b908162000a0a565b811462000b9c57600080fd5b50565b61303c8062000baf6000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063a702735711610095578063e985e9c511610064578063e985e9c51461066a578063efbd73f4146106a7578063f2fde38b146106d0578063f4db2acb146106f9576101e3565b8063a7027357146105bb578063b88d4fde146105e6578063c87b56dd14610602578063d5abeb011461063f576101e3565b806394354fd0116100d157806394354fd01461052057806395d89b411461054b578063a0712d6814610576578063a22cb46514610592576101e3565b8063715018a6146104995780637c928fe9146104b05780637ec4a659146104cc5780638da5cb5b146104f5576101e3565b80633ccfd60b1161017a57806362b99ad41161014957806362b99ad4146103cb5780636352211e146103f65780636f8b44b01461043357806370a082311461045c576101e3565b80633ccfd60b1461034457806342842e0e1461035b57806344a0d68a146103775780635c975abb146103a0576101e3565b806313faede6116101b657806313faede6146102a957806316c38b3c146102d457806318160ddd146102fd57806323b872dd14610328576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061247b565b610736565b60405161021c919061288b565b60405180910390f35b34801561023157600080fd5b5061023a6107c8565b60405161024791906128a6565b60405180910390f35b34801561025c57600080fd5b506102776004803603810190610272919061251e565b61085a565b6040516102849190612824565b60405180910390f35b6102a760048036038101906102a2919061240e565b6108d9565b005b3480156102b557600080fd5b506102be610a1d565b6040516102cb9190612a08565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f6919061244e565b610a23565b005b34801561030957600080fd5b50610312610a48565b60405161031f9190612a08565b60405180910390f35b610342600480360381019061033d91906122f8565b610a5f565b005b34801561035057600080fd5b50610359610d84565b005b610375600480360381019061037091906122f8565b610e62565b005b34801561038357600080fd5b5061039e6004803603810190610399919061251e565b610e82565b005b3480156103ac57600080fd5b506103b5610e94565b6040516103c2919061288b565b60405180910390f35b3480156103d757600080fd5b506103e0610ea7565b6040516103ed91906128a6565b60405180910390f35b34801561040257600080fd5b5061041d6004803603810190610418919061251e565b610f35565b60405161042a9190612824565b60405180910390f35b34801561043f57600080fd5b5061045a6004803603810190610455919061251e565b610f47565b005b34801561046857600080fd5b50610483600480360381019061047e919061228b565b610f59565b6040516104909190612a08565b60405180910390f35b3480156104a557600080fd5b506104ae611012565b005b6104ca60048036038101906104c5919061251e565b611026565b005b3480156104d857600080fd5b506104f360048036038101906104ee91906124d5565b611208565b005b34801561050157600080fd5b5061050a61122a565b6040516105179190612824565b60405180910390f35b34801561052c57600080fd5b50610535611254565b6040516105429190612a08565b60405180910390f35b34801561055757600080fd5b5061056061125a565b60405161056d91906128a6565b60405180910390f35b610590600480360381019061058b919061251e565b6112ec565b005b34801561059e57600080fd5b506105b960048036038101906105b491906123ce565b611445565b005b3480156105c757600080fd5b506105d0611550565b6040516105dd9190612a23565b60405180910390f35b61060060048036038101906105fb919061234b565b611563565b005b34801561060e57600080fd5b506106296004803603810190610624919061251e565b6115d6565b60405161063691906128a6565b60405180910390f35b34801561064b57600080fd5b5061065461167d565b6040516106619190612a08565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c91906122b8565b611683565b60405161069e919061288b565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c9919061254b565b611717565b005b3480156106dc57600080fd5b506106f760048036038101906106f2919061228b565b6117d7565b005b34801561070557600080fd5b50610720600480360381019061071b919061228b565b61185b565b60405161072d9190612a08565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107d790612c86565b80601f016020809104026020016040519081016040528092919081815260200182805461080390612c86565b80156108505780601f1061082557610100808354040283529160200191610850565b820191906000526020600020905b81548152906001019060200180831161083357829003601f168201915b5050505050905090565b600061086582611873565b61089b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e482610f35565b90508073ffffffffffffffffffffffffffffffffffffffff166109056118d2565b73ffffffffffffffffffffffffffffffffffffffff1614610968576109318161092c6118d2565b611683565b610967576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b610a2b6118da565b80601060006101000a81548160ff02191690831515021790555050565b6000610a52611958565b6001546000540303905090565b6000610a6a8261195d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610add84611a2b565b91509150610af38187610aee6118d2565b611a52565b610b3f57610b0886610b036118d2565b611683565b610b3e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb38686866001611a96565b8015610bbe57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8c85610c68888887611a9c565b7c020000000000000000000000000000000000000000000000000000000017611ac4565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d14576000600185019050600060046000838152602001908152602001600020541415610d12576000548114610d11578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7c8686866001611aef565b505050505050565b610d8c6118da565b60026009541415610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc9906129c8565b60405180910390fd5b60026009819055506000610de461122a565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e079061280f565b60006040518083038185875af1925050503d8060008114610e44576040519150601f19603f3d011682016040523d82523d6000602084013e610e49565b606091505b5050905080610e5757600080fd5b506001600981905550565b610e7d83838360405180602001604052806000815250611563565b505050565b610e8a6118da565b80600b8190555050565b601060009054906101000a900460ff1681565b600a8054610eb490612c86565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee090612c86565b8015610f2d5780601f10610f0257610100808354040283529160200191610f2d565b820191906000526020600020905b815481529060010190602001808311610f1057829003601f168201915b505050505081565b6000610f408261195d565b9050919050565b610f4f6118da565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61101a6118da565b6110246000611af5565b565b806001811461106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190612908565b60405180910390fd5b600c5481611076610a48565b6110809190612b13565b11156110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b8906129a8565b60405180910390fd5b600e60009054906101000a900460ff1660ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90612988565b60405180910390fd5b601060009054906101000a900460ff16156111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b90612948565b60405180910390fd5b600e60009054906101000a900460ff1660ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112043383611bbb565b5050565b6112106118da565b80600a908051906020019061122692919061209f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606003805461126990612c86565b80601f016020809104026020016040519081016040528092919081815260200182805461129590612c86565b80156112e25780601f106112b7576101008083540402835291602001916112e2565b820191906000526020600020905b8154815290600101906020018083116112c557829003601f168201915b5050505050905090565b806000811180156112ff5750600d548111155b61133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906128e8565b60405180910390fd5b600c548161134a610a48565b6113549190612b13565b1115611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c906129a8565b60405180910390fd5b8180600b546113a49190612b69565b3410156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd906129e8565b60405180910390fd5b601060009054906101000a900460ff1615611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90612948565b60405180910390fd5b6114403384611bbb565b505050565b80600760006114526118d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ff6118d2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611544919061288b565b60405180910390a35050565b600e60009054906101000a900460ff1681565b61156e848484610a5f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115d05761159984848484611bd9565b6115cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115e182611873565b611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790612968565b60405180910390fd5b600061162a611d39565b9050600081511161164a5760405180602001604052806000815250611675565b8061165484611dcb565b6040516020016116659291906127eb565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561172a5750600d548111155b611769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611760906128e8565b60405180910390fd5b600c5481611775610a48565b61177f9190612b13565b11156117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b7906129a8565b60405180910390fd5b6117c86118da565b6117d28284611bbb565b505050565b6117df6118da565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561184f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611846906128c8565b60405180910390fd5b61185881611af5565b50565b600f6020528060005260406000206000915090505481565b60008161187e611958565b1115801561188d575060005482105b80156118cb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6118e2611e24565b73ffffffffffffffffffffffffffffffffffffffff1661190061122a565b73ffffffffffffffffffffffffffffffffffffffff1614611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90612928565b60405180910390fd5b565b600090565b6000808290508061196c611958565b116119f4576000548110156119f35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156119f1575b60008114156119e75760046000836001900393508381526020019081526020016000205490506119bc565b8092505050611a26565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ab3868684611e2c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bd5828260405180602001604052806000815250611e35565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bff6118d2565b8786866040518563ffffffff1660e01b8152600401611c21949392919061283f565b602060405180830381600087803b158015611c3b57600080fd5b505af1925050508015611c6c57506040513d601f19601f82011682018060405250810190611c6991906124a8565b60015b611ce6573d8060008114611c9c576040519150601f19603f3d011682016040523d82523d6000602084013e611ca1565b606091505b50600081511415611cde576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d4890612c86565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7490612c86565b8015611dc15780601f10611d9657610100808354040283529160200191611dc1565b820191906000526020600020905b815481529060010190602001808311611da457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e0f57600184039350600a81066030018453600a8104905080611e0a57611e0f565b611de4565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611e3f8383611ed2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ecd57600080549050600083820390505b611e7f6000868380600101945086611bd9565b611eb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e6c578160005414611eca57600080fd5b50505b505050565b6000805490506000821415611f13576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f206000848385611a96565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f9783611f886000866000611a9c565b611f918561208f565b17611ac4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461203857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611ffd565b506000821415612074576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061208a6000848385611aef565b505050565b60006001821460e11b9050919050565b8280546120ab90612c86565b90600052602060002090601f0160209004810192826120cd5760008555612114565b82601f106120e657805160ff1916838001178555612114565b82800160010185558215612114579182015b828111156121135782518255916020019190600101906120f8565b5b5090506121219190612125565b5090565b5b8082111561213e576000816000905550600101612126565b5090565b600061215561215084612a63565b612a3e565b90508281526020810184848401111561217157612170612d7b565b5b61217c848285612c44565b509392505050565b600061219761219284612a94565b612a3e565b9050828152602081018484840111156121b3576121b2612d7b565b5b6121be848285612c44565b509392505050565b6000813590506121d581612faa565b92915050565b6000813590506121ea81612fc1565b92915050565b6000813590506121ff81612fd8565b92915050565b60008151905061221481612fd8565b92915050565b600082601f83011261222f5761222e612d76565b5b813561223f848260208601612142565b91505092915050565b600082601f83011261225d5761225c612d76565b5b813561226d848260208601612184565b91505092915050565b60008135905061228581612fef565b92915050565b6000602082840312156122a1576122a0612d85565b5b60006122af848285016121c6565b91505092915050565b600080604083850312156122cf576122ce612d85565b5b60006122dd858286016121c6565b92505060206122ee858286016121c6565b9150509250929050565b60008060006060848603121561231157612310612d85565b5b600061231f868287016121c6565b9350506020612330868287016121c6565b925050604061234186828701612276565b9150509250925092565b6000806000806080858703121561236557612364612d85565b5b6000612373878288016121c6565b9450506020612384878288016121c6565b935050604061239587828801612276565b925050606085013567ffffffffffffffff8111156123b6576123b5612d80565b5b6123c28782880161221a565b91505092959194509250565b600080604083850312156123e5576123e4612d85565b5b60006123f3858286016121c6565b9250506020612404858286016121db565b9150509250929050565b6000806040838503121561242557612424612d85565b5b6000612433858286016121c6565b925050602061244485828601612276565b9150509250929050565b60006020828403121561246457612463612d85565b5b6000612472848285016121db565b91505092915050565b60006020828403121561249157612490612d85565b5b600061249f848285016121f0565b91505092915050565b6000602082840312156124be576124bd612d85565b5b60006124cc84828501612205565b91505092915050565b6000602082840312156124eb576124ea612d85565b5b600082013567ffffffffffffffff81111561250957612508612d80565b5b61251584828501612248565b91505092915050565b60006020828403121561253457612533612d85565b5b600061254284828501612276565b91505092915050565b6000806040838503121561256257612561612d85565b5b600061257085828601612276565b9250506020612581858286016121c6565b9150509250929050565b61259481612bc3565b82525050565b6125a381612bd5565b82525050565b60006125b482612ac5565b6125be8185612adb565b93506125ce818560208601612c53565b6125d781612d8a565b840191505092915050565b60006125ed82612ad0565b6125f78185612af7565b9350612607818560208601612c53565b61261081612d8a565b840191505092915050565b600061262682612ad0565b6126308185612b08565b9350612640818560208601612c53565b80840191505092915050565b6000612659602683612af7565b915061266482612d9b565b604082019050919050565b600061267c601483612af7565b915061268782612dea565b602082019050919050565b600061269f602383612af7565b91506126aa82612e13565b604082019050919050565b60006126c2602083612af7565b91506126cd82612e62565b602082019050919050565b60006126e5601783612af7565b91506126f082612e8b565b602082019050919050565b6000612708602f83612af7565b915061271382612eb4565b604082019050919050565b600061272b601983612af7565b915061273682612f03565b602082019050919050565b600061274e600083612aec565b915061275982612f2c565b600082019050919050565b6000612771601483612af7565b915061277c82612f2f565b602082019050919050565b6000612794601f83612af7565b915061279f82612f58565b602082019050919050565b60006127b7601383612af7565b91506127c282612f81565b602082019050919050565b6127d681612c2d565b82525050565b6127e581612c37565b82525050565b60006127f7828561261b565b9150612803828461261b565b91508190509392505050565b600061281a82612741565b9150819050919050565b6000602082019050612839600083018461258b565b92915050565b6000608082019050612854600083018761258b565b612861602083018661258b565b61286e60408301856127cd565b818103606083015261288081846125a9565b905095945050505050565b60006020820190506128a0600083018461259a565b92915050565b600060208201905081810360008301526128c081846125e2565b905092915050565b600060208201905081810360008301526128e18161264c565b9050919050565b600060208201905081810360008301526129018161266f565b9050919050565b6000602082019050818103600083015261292181612692565b9050919050565b60006020820190508181036000830152612941816126b5565b9050919050565b60006020820190508181036000830152612961816126d8565b9050919050565b60006020820190508181036000830152612981816126fb565b9050919050565b600060208201905081810360008301526129a18161271e565b9050919050565b600060208201905081810360008301526129c181612764565b9050919050565b600060208201905081810360008301526129e181612787565b9050919050565b60006020820190508181036000830152612a01816127aa565b9050919050565b6000602082019050612a1d60008301846127cd565b92915050565b6000602082019050612a3860008301846127dc565b92915050565b6000612a48612a59565b9050612a548282612cb8565b919050565b6000604051905090565b600067ffffffffffffffff821115612a7e57612a7d612d47565b5b612a8782612d8a565b9050602081019050919050565b600067ffffffffffffffff821115612aaf57612aae612d47565b5b612ab882612d8a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b1e82612c2d565b9150612b2983612c2d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b5e57612b5d612ce9565b5b828201905092915050565b6000612b7482612c2d565b9150612b7f83612c2d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bb857612bb7612ce9565b5b828202905092915050565b6000612bce82612c0d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612c71578082015181840152602081019050612c56565b83811115612c80576000848401525b50505050565b60006002820490506001821680612c9e57607f821691505b60208210811415612cb257612cb1612d18565b5b50919050565b612cc182612d8a565b810181811067ffffffffffffffff82111715612ce057612cdf612d47565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f46726565206d696e7420616d6f756e74206d75737420626520657175616c207460008201527f6f20310000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b612fb381612bc3565b8114612fbe57600080fd5b50565b612fca81612bd5565b8114612fd557600080fd5b50565b612fe181612be1565b8114612fec57600080fd5b50565b612ff881612c2d565b811461300357600080fd5b5056fea26469706673582212205afcc2be1a0c378c9884a27365e6c8fdecd722ee2200631c7a7996503efbca0a64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063a702735711610095578063e985e9c511610064578063e985e9c51461066a578063efbd73f4146106a7578063f2fde38b146106d0578063f4db2acb146106f9576101e3565b8063a7027357146105bb578063b88d4fde146105e6578063c87b56dd14610602578063d5abeb011461063f576101e3565b806394354fd0116100d157806394354fd01461052057806395d89b411461054b578063a0712d6814610576578063a22cb46514610592576101e3565b8063715018a6146104995780637c928fe9146104b05780637ec4a659146104cc5780638da5cb5b146104f5576101e3565b80633ccfd60b1161017a57806362b99ad41161014957806362b99ad4146103cb5780636352211e146103f65780636f8b44b01461043357806370a082311461045c576101e3565b80633ccfd60b1461034457806342842e0e1461035b57806344a0d68a146103775780635c975abb146103a0576101e3565b806313faede6116101b657806313faede6146102a957806316c38b3c146102d457806318160ddd146102fd57806323b872dd14610328576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061247b565b610736565b60405161021c919061288b565b60405180910390f35b34801561023157600080fd5b5061023a6107c8565b60405161024791906128a6565b60405180910390f35b34801561025c57600080fd5b506102776004803603810190610272919061251e565b61085a565b6040516102849190612824565b60405180910390f35b6102a760048036038101906102a2919061240e565b6108d9565b005b3480156102b557600080fd5b506102be610a1d565b6040516102cb9190612a08565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f6919061244e565b610a23565b005b34801561030957600080fd5b50610312610a48565b60405161031f9190612a08565b60405180910390f35b610342600480360381019061033d91906122f8565b610a5f565b005b34801561035057600080fd5b50610359610d84565b005b610375600480360381019061037091906122f8565b610e62565b005b34801561038357600080fd5b5061039e6004803603810190610399919061251e565b610e82565b005b3480156103ac57600080fd5b506103b5610e94565b6040516103c2919061288b565b60405180910390f35b3480156103d757600080fd5b506103e0610ea7565b6040516103ed91906128a6565b60405180910390f35b34801561040257600080fd5b5061041d6004803603810190610418919061251e565b610f35565b60405161042a9190612824565b60405180910390f35b34801561043f57600080fd5b5061045a6004803603810190610455919061251e565b610f47565b005b34801561046857600080fd5b50610483600480360381019061047e919061228b565b610f59565b6040516104909190612a08565b60405180910390f35b3480156104a557600080fd5b506104ae611012565b005b6104ca60048036038101906104c5919061251e565b611026565b005b3480156104d857600080fd5b506104f360048036038101906104ee91906124d5565b611208565b005b34801561050157600080fd5b5061050a61122a565b6040516105179190612824565b60405180910390f35b34801561052c57600080fd5b50610535611254565b6040516105429190612a08565b60405180910390f35b34801561055757600080fd5b5061056061125a565b60405161056d91906128a6565b60405180910390f35b610590600480360381019061058b919061251e565b6112ec565b005b34801561059e57600080fd5b506105b960048036038101906105b491906123ce565b611445565b005b3480156105c757600080fd5b506105d0611550565b6040516105dd9190612a23565b60405180910390f35b61060060048036038101906105fb919061234b565b611563565b005b34801561060e57600080fd5b506106296004803603810190610624919061251e565b6115d6565b60405161063691906128a6565b60405180910390f35b34801561064b57600080fd5b5061065461167d565b6040516106619190612a08565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c91906122b8565b611683565b60405161069e919061288b565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c9919061254b565b611717565b005b3480156106dc57600080fd5b506106f760048036038101906106f2919061228b565b6117d7565b005b34801561070557600080fd5b50610720600480360381019061071b919061228b565b61185b565b60405161072d9190612a08565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107d790612c86565b80601f016020809104026020016040519081016040528092919081815260200182805461080390612c86565b80156108505780601f1061082557610100808354040283529160200191610850565b820191906000526020600020905b81548152906001019060200180831161083357829003601f168201915b5050505050905090565b600061086582611873565b61089b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e482610f35565b90508073ffffffffffffffffffffffffffffffffffffffff166109056118d2565b73ffffffffffffffffffffffffffffffffffffffff1614610968576109318161092c6118d2565b611683565b610967576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b610a2b6118da565b80601060006101000a81548160ff02191690831515021790555050565b6000610a52611958565b6001546000540303905090565b6000610a6a8261195d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610add84611a2b565b91509150610af38187610aee6118d2565b611a52565b610b3f57610b0886610b036118d2565b611683565b610b3e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb38686866001611a96565b8015610bbe57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8c85610c68888887611a9c565b7c020000000000000000000000000000000000000000000000000000000017611ac4565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d14576000600185019050600060046000838152602001908152602001600020541415610d12576000548114610d11578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7c8686866001611aef565b505050505050565b610d8c6118da565b60026009541415610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc9906129c8565b60405180910390fd5b60026009819055506000610de461122a565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e079061280f565b60006040518083038185875af1925050503d8060008114610e44576040519150601f19603f3d011682016040523d82523d6000602084013e610e49565b606091505b5050905080610e5757600080fd5b506001600981905550565b610e7d83838360405180602001604052806000815250611563565b505050565b610e8a6118da565b80600b8190555050565b601060009054906101000a900460ff1681565b600a8054610eb490612c86565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee090612c86565b8015610f2d5780601f10610f0257610100808354040283529160200191610f2d565b820191906000526020600020905b815481529060010190602001808311610f1057829003601f168201915b505050505081565b6000610f408261195d565b9050919050565b610f4f6118da565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61101a6118da565b6110246000611af5565b565b806001811461106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190612908565b60405180910390fd5b600c5481611076610a48565b6110809190612b13565b11156110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b8906129a8565b60405180910390fd5b600e60009054906101000a900460ff1660ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90612988565b60405180910390fd5b601060009054906101000a900460ff16156111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b90612948565b60405180910390fd5b600e60009054906101000a900460ff1660ff16600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112043383611bbb565b5050565b6112106118da565b80600a908051906020019061122692919061209f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606003805461126990612c86565b80601f016020809104026020016040519081016040528092919081815260200182805461129590612c86565b80156112e25780601f106112b7576101008083540402835291602001916112e2565b820191906000526020600020905b8154815290600101906020018083116112c557829003601f168201915b5050505050905090565b806000811180156112ff5750600d548111155b61133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906128e8565b60405180910390fd5b600c548161134a610a48565b6113549190612b13565b1115611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c906129a8565b60405180910390fd5b8180600b546113a49190612b69565b3410156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd906129e8565b60405180910390fd5b601060009054906101000a900460ff1615611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90612948565b60405180910390fd5b6114403384611bbb565b505050565b80600760006114526118d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ff6118d2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611544919061288b565b60405180910390a35050565b600e60009054906101000a900460ff1681565b61156e848484610a5f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115d05761159984848484611bd9565b6115cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115e182611873565b611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790612968565b60405180910390fd5b600061162a611d39565b9050600081511161164a5760405180602001604052806000815250611675565b8061165484611dcb565b6040516020016116659291906127eb565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561172a5750600d548111155b611769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611760906128e8565b60405180910390fd5b600c5481611775610a48565b61177f9190612b13565b11156117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b7906129a8565b60405180910390fd5b6117c86118da565b6117d28284611bbb565b505050565b6117df6118da565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561184f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611846906128c8565b60405180910390fd5b61185881611af5565b50565b600f6020528060005260406000206000915090505481565b60008161187e611958565b1115801561188d575060005482105b80156118cb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6118e2611e24565b73ffffffffffffffffffffffffffffffffffffffff1661190061122a565b73ffffffffffffffffffffffffffffffffffffffff1614611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90612928565b60405180910390fd5b565b600090565b6000808290508061196c611958565b116119f4576000548110156119f35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156119f1575b60008114156119e75760046000836001900393508381526020019081526020016000205490506119bc565b8092505050611a26565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ab3868684611e2c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bd5828260405180602001604052806000815250611e35565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bff6118d2565b8786866040518563ffffffff1660e01b8152600401611c21949392919061283f565b602060405180830381600087803b158015611c3b57600080fd5b505af1925050508015611c6c57506040513d601f19601f82011682018060405250810190611c6991906124a8565b60015b611ce6573d8060008114611c9c576040519150601f19603f3d011682016040523d82523d6000602084013e611ca1565b606091505b50600081511415611cde576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d4890612c86565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7490612c86565b8015611dc15780601f10611d9657610100808354040283529160200191611dc1565b820191906000526020600020905b815481529060010190602001808311611da457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e0f57600184039350600a81066030018453600a8104905080611e0a57611e0f565b611de4565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611e3f8383611ed2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ecd57600080549050600083820390505b611e7f6000868380600101945086611bd9565b611eb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e6c578160005414611eca57600080fd5b50505b505050565b6000805490506000821415611f13576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f206000848385611a96565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f9783611f886000866000611a9c565b611f918561208f565b17611ac4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461203857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611ffd565b506000821415612074576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061208a6000848385611aef565b505050565b60006001821460e11b9050919050565b8280546120ab90612c86565b90600052602060002090601f0160209004810192826120cd5760008555612114565b82601f106120e657805160ff1916838001178555612114565b82800160010185558215612114579182015b828111156121135782518255916020019190600101906120f8565b5b5090506121219190612125565b5090565b5b8082111561213e576000816000905550600101612126565b5090565b600061215561215084612a63565b612a3e565b90508281526020810184848401111561217157612170612d7b565b5b61217c848285612c44565b509392505050565b600061219761219284612a94565b612a3e565b9050828152602081018484840111156121b3576121b2612d7b565b5b6121be848285612c44565b509392505050565b6000813590506121d581612faa565b92915050565b6000813590506121ea81612fc1565b92915050565b6000813590506121ff81612fd8565b92915050565b60008151905061221481612fd8565b92915050565b600082601f83011261222f5761222e612d76565b5b813561223f848260208601612142565b91505092915050565b600082601f83011261225d5761225c612d76565b5b813561226d848260208601612184565b91505092915050565b60008135905061228581612fef565b92915050565b6000602082840312156122a1576122a0612d85565b5b60006122af848285016121c6565b91505092915050565b600080604083850312156122cf576122ce612d85565b5b60006122dd858286016121c6565b92505060206122ee858286016121c6565b9150509250929050565b60008060006060848603121561231157612310612d85565b5b600061231f868287016121c6565b9350506020612330868287016121c6565b925050604061234186828701612276565b9150509250925092565b6000806000806080858703121561236557612364612d85565b5b6000612373878288016121c6565b9450506020612384878288016121c6565b935050604061239587828801612276565b925050606085013567ffffffffffffffff8111156123b6576123b5612d80565b5b6123c28782880161221a565b91505092959194509250565b600080604083850312156123e5576123e4612d85565b5b60006123f3858286016121c6565b9250506020612404858286016121db565b9150509250929050565b6000806040838503121561242557612424612d85565b5b6000612433858286016121c6565b925050602061244485828601612276565b9150509250929050565b60006020828403121561246457612463612d85565b5b6000612472848285016121db565b91505092915050565b60006020828403121561249157612490612d85565b5b600061249f848285016121f0565b91505092915050565b6000602082840312156124be576124bd612d85565b5b60006124cc84828501612205565b91505092915050565b6000602082840312156124eb576124ea612d85565b5b600082013567ffffffffffffffff81111561250957612508612d80565b5b61251584828501612248565b91505092915050565b60006020828403121561253457612533612d85565b5b600061254284828501612276565b91505092915050565b6000806040838503121561256257612561612d85565b5b600061257085828601612276565b9250506020612581858286016121c6565b9150509250929050565b61259481612bc3565b82525050565b6125a381612bd5565b82525050565b60006125b482612ac5565b6125be8185612adb565b93506125ce818560208601612c53565b6125d781612d8a565b840191505092915050565b60006125ed82612ad0565b6125f78185612af7565b9350612607818560208601612c53565b61261081612d8a565b840191505092915050565b600061262682612ad0565b6126308185612b08565b9350612640818560208601612c53565b80840191505092915050565b6000612659602683612af7565b915061266482612d9b565b604082019050919050565b600061267c601483612af7565b915061268782612dea565b602082019050919050565b600061269f602383612af7565b91506126aa82612e13565b604082019050919050565b60006126c2602083612af7565b91506126cd82612e62565b602082019050919050565b60006126e5601783612af7565b91506126f082612e8b565b602082019050919050565b6000612708602f83612af7565b915061271382612eb4565b604082019050919050565b600061272b601983612af7565b915061273682612f03565b602082019050919050565b600061274e600083612aec565b915061275982612f2c565b600082019050919050565b6000612771601483612af7565b915061277c82612f2f565b602082019050919050565b6000612794601f83612af7565b915061279f82612f58565b602082019050919050565b60006127b7601383612af7565b91506127c282612f81565b602082019050919050565b6127d681612c2d565b82525050565b6127e581612c37565b82525050565b60006127f7828561261b565b9150612803828461261b565b91508190509392505050565b600061281a82612741565b9150819050919050565b6000602082019050612839600083018461258b565b92915050565b6000608082019050612854600083018761258b565b612861602083018661258b565b61286e60408301856127cd565b818103606083015261288081846125a9565b905095945050505050565b60006020820190506128a0600083018461259a565b92915050565b600060208201905081810360008301526128c081846125e2565b905092915050565b600060208201905081810360008301526128e18161264c565b9050919050565b600060208201905081810360008301526129018161266f565b9050919050565b6000602082019050818103600083015261292181612692565b9050919050565b60006020820190508181036000830152612941816126b5565b9050919050565b60006020820190508181036000830152612961816126d8565b9050919050565b60006020820190508181036000830152612981816126fb565b9050919050565b600060208201905081810360008301526129a18161271e565b9050919050565b600060208201905081810360008301526129c181612764565b9050919050565b600060208201905081810360008301526129e181612787565b9050919050565b60006020820190508181036000830152612a01816127aa565b9050919050565b6000602082019050612a1d60008301846127cd565b92915050565b6000602082019050612a3860008301846127dc565b92915050565b6000612a48612a59565b9050612a548282612cb8565b919050565b6000604051905090565b600067ffffffffffffffff821115612a7e57612a7d612d47565b5b612a8782612d8a565b9050602081019050919050565b600067ffffffffffffffff821115612aaf57612aae612d47565b5b612ab882612d8a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b1e82612c2d565b9150612b2983612c2d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b5e57612b5d612ce9565b5b828201905092915050565b6000612b7482612c2d565b9150612b7f83612c2d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bb857612bb7612ce9565b5b828202905092915050565b6000612bce82612c0d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612c71578082015181840152602081019050612c56565b83811115612c80576000848401525b50505050565b60006002820490506001821680612c9e57607f821691505b60208210811415612cb257612cb1612d18565b5b50919050565b612cc182612d8a565b810181811067ffffffffffffffff82111715612ce057612cdf612d47565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f46726565206d696e7420616d6f756e74206d75737420626520657175616c207460008201527f6f20310000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b612fb381612bc3565b8114612fbe57600080fd5b50565b612fca81612bd5565b8114612fd557600080fd5b50565b612fe181612be1565b8114612fec57600080fd5b50565b612ff881612c2d565b811461300357600080fd5b5056fea26469706673582212205afcc2be1a0c378c9884a27365e6c8fdecd722ee2200631c7a7996503efbca0a64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string):
Arg [1] : _tokenSymbol (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

57880:2820:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24818:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25720:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32211:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31644:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57971:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60254:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21471:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35850:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60437:150;;;;;;;;;;;;;:::i;:::-;;38771:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60068:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58186:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57936:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27113:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60337:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22655:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5597:103;;;;;;;;;;;;;:::i;:::-;;59072:243;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60148:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4949:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58045:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25896:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59321:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32769:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58087:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39562:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59700:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58009:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33160:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59539:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5855:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58127:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24818:639;24903:4;25242:10;25227:25;;:11;:25;;;;:102;;;;25319:10;25304:25;;:11;:25;;;;25227:102;:179;;;;25396:10;25381:25;;:11;:25;;;;25227:179;25207:199;;24818:639;;;:::o;25720:100::-;25774:13;25807:5;25800:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25720:100;:::o;32211:218::-;32287:7;32312:16;32320:7;32312;:16::i;:::-;32307:64;;32337:34;;;;;;;;;;;;;;32307:64;32391:15;:24;32407:7;32391:24;;;;;;;;;;;:30;;;;;;;;;;;;32384:37;;32211:218;;;:::o;31644:408::-;31733:13;31749:16;31757:7;31749;:16::i;:::-;31733:32;;31805:5;31782:28;;:19;:17;:19::i;:::-;:28;;;31778:175;;31830:44;31847:5;31854:19;:17;:19::i;:::-;31830:16;:44::i;:::-;31825:128;;31902:35;;;;;;;;;;;;;;31825:128;31778:175;31998:2;31965:15;:24;31981:7;31965:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32036:7;32032:2;32016:28;;32025:5;32016:28;;;;;;;;;;;;31722:330;31644:408;;:::o;57971:33::-;;;;:::o;60254:77::-;4835:13;:11;:13::i;:::-;60319:6:::1;60310;;:15;;;;;;;;;;;;;;;;;;60254:77:::0;:::o;21471:323::-;21532:7;21760:15;:13;:15::i;:::-;21745:12;;21729:13;;:28;:46;21722:53;;21471:323;:::o;35850:2825::-;35992:27;36022;36041:7;36022:18;:27::i;:::-;35992:57;;36107:4;36066:45;;36082:19;36066:45;;;36062:86;;36120:28;;;;;;;;;;;;;;36062:86;36162:27;36191:23;36218:35;36245:7;36218:26;:35::i;:::-;36161:92;;;;36353:68;36378:15;36395:4;36401:19;:17;:19::i;:::-;36353:24;:68::i;:::-;36348:180;;36441:43;36458:4;36464:19;:17;:19::i;:::-;36441:16;:43::i;:::-;36436:92;;36493:35;;;;;;;;;;;;;;36436:92;36348:180;36559:1;36545:16;;:2;:16;;;36541:52;;;36570:23;;;;;;;;;;;;;;36541:52;36606:43;36628:4;36634:2;36638:7;36647:1;36606:21;:43::i;:::-;36742:15;36739:160;;;36882:1;36861:19;36854:30;36739:160;37279:18;:24;37298:4;37279:24;;;;;;;;;;;;;;;;37277:26;;;;;;;;;;;;37348:18;:22;37367:2;37348:22;;;;;;;;;;;;;;;;37346:24;;;;;;;;;;;37670:146;37707:2;37756:45;37771:4;37777:2;37781:19;37756:14;:45::i;:::-;17870:8;37728:73;37670:18;:146::i;:::-;37641:17;:26;37659:7;37641:26;;;;;;;;;;;:175;;;;37987:1;17870:8;37936:19;:47;:52;37932:627;;;38009:19;38041:1;38031:7;:11;38009:33;;38198:1;38164:17;:30;38182:11;38164:30;;;;;;;;;;;;:35;38160:384;;;38302:13;;38287:11;:28;38283:242;;38482:19;38449:17;:30;38467:11;38449:30;;;;;;;;;;;:52;;;;38283:242;38160:384;37990:569;37932:627;38606:7;38602:2;38587:27;;38596:4;38587:27;;;;;;;;;;;;38625:42;38646:4;38652:2;38656:7;38665:1;38625:20;:42::i;:::-;35981:2694;;;35850:2825;;;:::o;60437:150::-;4835:13;:11;:13::i;:::-;1874:1:::1;2472:7;;:19;;2464:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1874:1;2605:7;:18;;;;60495:7:::2;60516;:5;:7::i;:::-;60508:21;;60537;60508:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60494:69;;;60578:2;60570:11;;;::::0;::::2;;60487:100;1830:1:::1;2784:7;:22;;;;60437:150::o:0;38771:193::-;38917:39;38934:4;38940:2;38944:7;38917:39;;;;;;;;;;;;:16;:39::i;:::-;38771:193;;;:::o;60068:74::-;4835:13;:11;:13::i;:::-;60131:5:::1;60124:4;:12;;;;60068:74:::0;:::o;58186:25::-;;;;;;;;;;;;;:::o;57936:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27113:152::-;27185:7;27228:27;27247:7;27228:18;:27::i;:::-;27205:52;;27113:152;;;:::o;60337:94::-;4835:13;:11;:13::i;:::-;60415:10:::1;60403:9;:22;;;;60337:94:::0;:::o;22655:233::-;22727:7;22768:1;22751:19;;:5;:19;;;22747:60;;;22779:28;;;;;;;;;;;;;;22747:60;16814:13;22825:18;:25;22844:5;22825:25;;;;;;;;;;;;;;;;:55;22818:62;;22655:233;;;:::o;5597:103::-;4835:13;:11;:13::i;:::-;5662:30:::1;5689:1;5662:18;:30::i;:::-;5597:103::o:0;59072:243::-;59150:11;58838:1;58823:11;:16;58815:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;58925:9;;58910:11;58894:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58886:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59006:16;;;;;;;;;;;58974:48;;:17;:29;58992:10;58974:29;;;;;;;;;;;;;;;;:48;58966:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;59179:6:::1;;;;;;;;;;;59178:7;59170:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59252:16;;;;;;;;;;;59220:48;;:17;:29;59238:10;59220:29;;;;;;;;;;;;;;;:48;;;;59275:34;59285:10;59297:11;59275:9;:34::i;:::-;59072:243:::0;;:::o;60148:100::-;4835:13;:11;:13::i;:::-;60232:10:::1;60220:9;:22;;;;;;;;;;;;:::i;:::-;;60148:100:::0;:::o;4949:87::-;4995:7;5022:6;;;;;;;;;;;5015:13;;4949:87;:::o;58045:37::-;;;;:::o;25896:104::-;25952:13;25985:7;25978:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25896:104;:::o;59321:210::-;59386:11;58451:1;58437:11;:15;:52;;;;;58471:18;;58456:11;:33;;58437:52;58429:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58560:9;;58545:11;58529:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58521:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59419:11:::1;58699;58692:4;;:18;;;;:::i;:::-;58679:9;:31;;58671:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59448:6:::2;;;;;;;;;;;59447:7;59439:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59491:34;59501:10;59513:11;59491:9;:34::i;:::-;58601:1:::1;59321:210:::0;;:::o;32769:234::-;32916:8;32864:18;:39;32883:19;:17;:19::i;:::-;32864:39;;;;;;;;;;;;;;;:49;32904:8;32864:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32976:8;32940:55;;32955:19;:17;:19::i;:::-;32940:55;;;32986:8;32940:55;;;;;;:::i;:::-;;;;;;;;32769:234;;:::o;58087:35::-;;;;;;;;;;;;;:::o;39562:407::-;39737:31;39750:4;39756:2;39760:7;39737:12;:31::i;:::-;39801:1;39783:2;:14;;;:19;39779:183;;39822:56;39853:4;39859:2;39863:7;39872:5;39822:30;:56::i;:::-;39817:145;;39906:40;;;;;;;;;;;;;;39817:145;39779:183;39562:407;;;;:::o;59700:362::-;59774:13;59804:17;59812:8;59804:7;:17::i;:::-;59796:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;59882:28;59913:10;:8;:10::i;:::-;59882:41;;59968:1;59943:14;59937:28;:32;:119;;;;;;;;;;;;;;;;;60005:14;60021:19;60031:8;60021:9;:19::i;:::-;59988:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59937:119;59930:126;;;59700:362;;;:::o;58009:31::-;;;;:::o;33160:164::-;33257:4;33281:18;:25;33300:5;33281:25;;;;;;;;;;;;;;;:35;33307:8;33281:35;;;;;;;;;;;;;;;;;;;;;;;;;33274:42;;33160:164;;;;:::o;59539:155::-;59625:11;58451:1;58437:11;:15;:52;;;;;58471:18;;58456:11;:33;;58437:52;58429:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58560:9;;58545:11;58529:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58521:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4835:13:::1;:11;:13::i;:::-;59655:33:::2;59665:9;59676:11;59655:9;:33::i;:::-;59539:155:::0;;;:::o;5855:201::-;4835:13;:11;:13::i;:::-;5964:1:::1;5944:22;;:8;:22;;;;5936:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6020:28;6039:8;6020:18;:28::i;:::-;5855:201:::0;:::o;58127:52::-;;;;;;;;;;;;;;;;;:::o;33582:282::-;33647:4;33703:7;33684:15;:13;:15::i;:::-;:26;;:66;;;;;33737:13;;33727:7;:23;33684:66;:153;;;;;33836:1;17590:8;33788:17;:26;33806:7;33788:26;;;;;;;;;;;;:44;:49;33684:153;33664:173;;33582:282;;;:::o;55890:105::-;55950:7;55977:10;55970:17;;55890:105;:::o;5114:132::-;5189:12;:10;:12::i;:::-;5178:23;;:7;:5;:7::i;:::-;:23;;;5170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5114:132::o;20987:92::-;21043:7;20987:92;:::o;28268:1275::-;28335:7;28355:12;28370:7;28355:22;;28438:4;28419:15;:13;:15::i;:::-;:23;28415:1061;;28472:13;;28465:4;:20;28461:1015;;;28510:14;28527:17;:23;28545:4;28527:23;;;;;;;;;;;;28510:40;;28644:1;17590:8;28616:6;:24;:29;28612:845;;;29281:113;29298:1;29288:6;:11;29281:113;;;29341:17;:25;29359:6;;;;;;;29341:25;;;;;;;;;;;;29332:34;;29281:113;;;29427:6;29420:13;;;;;;28612:845;28487:989;28461:1015;28415:1061;29504:31;;;;;;;;;;;;;;28268:1275;;;;:::o;34745:485::-;34847:27;34876:23;34917:38;34958:15;:24;34974:7;34958:24;;;;;;;;;;;34917:65;;35135:18;35112:41;;35192:19;35186:26;35167:45;;35097:126;34745:485;;;:::o;33973:659::-;34122:11;34287:16;34280:5;34276:28;34267:37;;34447:16;34436:9;34432:32;34419:45;;34597:15;34586:9;34583:30;34575:5;34564:9;34561:20;34558:56;34548:66;;33973:659;;;;;:::o;40631:159::-;;;;;:::o;55199:311::-;55334:7;55354:16;17994:3;55380:19;:41;;55354:68;;17994:3;55448:31;55459:4;55465:2;55469:9;55448:10;:31::i;:::-;55440:40;;:62;;55433:69;;;55199:311;;;;;:::o;30091:450::-;30171:14;30339:16;30332:5;30328:28;30319:37;;30516:5;30502:11;30477:23;30473:41;30470:52;30463:5;30460:63;30450:73;;30091:450;;;;:::o;41455:158::-;;;;;:::o;6216:191::-;6290:16;6309:6;;;;;;;;;;;6290:25;;6335:8;6326:6;;:17;;;;;;;;;;;;;;;;;;6390:8;6359:40;;6380:8;6359:40;;;;;;;;;;;;6279:128;6216:191;:::o;49722:112::-;49799:27;49809:2;49813:8;49799:27;;;;;;;;;;;;:9;:27::i;:::-;49722:112;;:::o;42053:716::-;42216:4;42262:2;42237:45;;;42283:19;:17;:19::i;:::-;42304:4;42310:7;42319:5;42237:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42233:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42537:1;42520:6;:13;:18;42516:235;;;42566:40;;;;;;;;;;;;;;42516:235;42709:6;42703:13;42694:6;42690:2;42686:15;42679:38;42233:529;42406:54;;;42396:64;;;:6;:64;;;;42389:71;;;42053:716;;;;;;:::o;60593:104::-;60653:13;60682:9;60675:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60593:104;:::o;56097:1745::-;56162:17;56596:4;56589;56583:11;56579:22;56688:1;56682:4;56675:15;56763:4;56760:1;56756:12;56749:19;;56845:1;56840:3;56833:14;56949:3;57188:5;57170:428;57196:1;57170:428;;;57236:1;57231:3;57227:11;57220:18;;57407:2;57401:4;57397:13;57393:2;57389:22;57384:3;57376:36;57501:2;57495:4;57491:13;57483:21;;57568:4;57558:25;;57576:5;;57558:25;57170:428;;;57174:21;57637:3;57632;57628:13;57752:4;57747:3;57743:14;57736:21;;57817:6;57812:3;57805:19;56201:1634;;;56097:1745;;;:::o;3500:98::-;3553:7;3580:10;3573:17;;3500:98;:::o;54900:147::-;55037:6;54900:147;;;;;:::o;48949:689::-;49080:19;49086:2;49090:8;49080:5;:19::i;:::-;49159:1;49141:2;:14;;;:19;49137:483;;49181:11;49195:13;;49181:27;;49227:13;49249:8;49243:3;:14;49227:30;;49276:233;49307:62;49346:1;49350:2;49354:7;;;;;;49363:5;49307:30;:62::i;:::-;49302:167;;49405:40;;;;;;;;;;;;;;49302:167;49504:3;49496:5;:11;49276:233;;49591:3;49574:13;;:20;49570:34;;49596:8;;;49570:34;49162:458;;49137:483;48949:689;;;:::o;43231:2966::-;43304:20;43327:13;;43304:36;;43367:1;43355:8;:13;43351:44;;;43377:18;;;;;;;;;;;;;;43351:44;43408:61;43438:1;43442:2;43446:12;43460:8;43408:21;:61::i;:::-;43952:1;16952:2;43922:1;:26;;43921:32;43909:8;:45;43883:18;:22;43902:2;43883:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44231:139;44268:2;44322:33;44345:1;44349:2;44353:1;44322:14;:33::i;:::-;44289:30;44310:8;44289:20;:30::i;:::-;:66;44231:18;:139::i;:::-;44197:17;:31;44215:12;44197:31;;;;;;;;;;;:173;;;;44387:16;44418:11;44447:8;44432:12;:23;44418:37;;44968:16;44964:2;44960:25;44948:37;;45340:12;45300:8;45259:1;45197:25;45138:1;45077;45050:335;45711:1;45697:12;45693:20;45651:346;45752:3;45743:7;45740:16;45651:346;;45970:7;45960:8;45957:1;45930:25;45927:1;45924;45919:59;45805:1;45796:7;45792:15;45781:26;;45651:346;;;45655:77;46042:1;46030:8;:13;46026:45;;;46052:19;;;;;;;;;;;;;;46026:45;46104:3;46088:13;:19;;;;43657:2462;;46129:60;46158:1;46162:2;46166:12;46180:8;46129:20;:60::i;:::-;43293:2904;43231:2966;;:::o;30643:324::-;30713:14;30946:1;30936:8;30933:15;30907:24;30903:46;30893:56;;30643:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9325:366::-;9467:3;9488:67;9552:2;9547:3;9488:67;:::i;:::-;9481:74;;9564:93;9653:3;9564:93;:::i;:::-;9682:2;9677:3;9673:12;9666:19;;9325:366;;;:::o;9697:::-;9839:3;9860:67;9924:2;9919:3;9860:67;:::i;:::-;9853:74;;9936:93;10025:3;9936:93;:::i;:::-;10054:2;10049:3;10045:12;10038:19;;9697:366;;;:::o;10069:::-;10211:3;10232:67;10296:2;10291:3;10232:67;:::i;:::-;10225:74;;10308:93;10397:3;10308:93;:::i;:::-;10426:2;10421:3;10417:12;10410:19;;10069:366;;;:::o;10441:::-;10583:3;10604:67;10668:2;10663:3;10604:67;:::i;:::-;10597:74;;10680:93;10769:3;10680:93;:::i;:::-;10798:2;10793:3;10789:12;10782:19;;10441:366;;;:::o;10813:::-;10955:3;10976:67;11040:2;11035:3;10976:67;:::i;:::-;10969:74;;11052:93;11141:3;11052:93;:::i;:::-;11170:2;11165:3;11161:12;11154:19;;10813:366;;;:::o;11185:::-;11327:3;11348:67;11412:2;11407:3;11348:67;:::i;:::-;11341:74;;11424:93;11513:3;11424:93;:::i;:::-;11542:2;11537:3;11533:12;11526:19;;11185:366;;;:::o;11557:::-;11699:3;11720:67;11784:2;11779:3;11720:67;:::i;:::-;11713:74;;11796:93;11885:3;11796:93;:::i;:::-;11914:2;11909:3;11905:12;11898:19;;11557:366;;;:::o;11929:398::-;12088:3;12109:83;12190:1;12185:3;12109:83;:::i;:::-;12102:90;;12201:93;12290:3;12201:93;:::i;:::-;12319:1;12314:3;12310:11;12303:18;;11929:398;;;:::o;12333:366::-;12475:3;12496:67;12560:2;12555:3;12496:67;:::i;:::-;12489:74;;12572:93;12661:3;12572:93;:::i;:::-;12690:2;12685:3;12681:12;12674:19;;12333:366;;;:::o;12705:::-;12847:3;12868:67;12932:2;12927:3;12868:67;:::i;:::-;12861:74;;12944:93;13033:3;12944:93;:::i;:::-;13062:2;13057:3;13053:12;13046:19;;12705:366;;;:::o;13077:::-;13219:3;13240:67;13304:2;13299:3;13240:67;:::i;:::-;13233:74;;13316:93;13405:3;13316:93;:::i;:::-;13434:2;13429:3;13425:12;13418:19;;13077:366;;;:::o;13449:118::-;13536:24;13554:5;13536:24;:::i;:::-;13531:3;13524:37;13449:118;;:::o;13573:112::-;13656:22;13672:5;13656:22;:::i;:::-;13651:3;13644:35;13573:112;;:::o;13691:435::-;13871:3;13893:95;13984:3;13975:6;13893:95;:::i;:::-;13886:102;;14005:95;14096:3;14087:6;14005:95;:::i;:::-;13998:102;;14117:3;14110:10;;13691:435;;;;;:::o;14132:379::-;14316:3;14338:147;14481:3;14338:147;:::i;:::-;14331:154;;14502:3;14495:10;;14132:379;;;:::o;14517:222::-;14610:4;14648:2;14637:9;14633:18;14625:26;;14661:71;14729:1;14718:9;14714:17;14705:6;14661:71;:::i;:::-;14517:222;;;;:::o;14745:640::-;14940:4;14978:3;14967:9;14963:19;14955:27;;14992:71;15060:1;15049:9;15045:17;15036:6;14992:71;:::i;:::-;15073:72;15141:2;15130:9;15126:18;15117:6;15073:72;:::i;:::-;15155;15223:2;15212:9;15208:18;15199:6;15155:72;:::i;:::-;15274:9;15268:4;15264:20;15259:2;15248:9;15244:18;15237:48;15302:76;15373:4;15364:6;15302:76;:::i;:::-;15294:84;;14745:640;;;;;;;:::o;15391:210::-;15478:4;15516:2;15505:9;15501:18;15493:26;;15529:65;15591:1;15580:9;15576:17;15567:6;15529:65;:::i;:::-;15391:210;;;;:::o;15607:313::-;15720:4;15758:2;15747:9;15743:18;15735:26;;15807:9;15801:4;15797:20;15793:1;15782:9;15778:17;15771:47;15835:78;15908:4;15899:6;15835:78;:::i;:::-;15827:86;;15607:313;;;;:::o;15926:419::-;16092:4;16130:2;16119:9;16115:18;16107:26;;16179:9;16173:4;16169:20;16165:1;16154:9;16150:17;16143:47;16207:131;16333:4;16207:131;:::i;:::-;16199:139;;15926:419;;;:::o;16351:::-;16517:4;16555:2;16544:9;16540:18;16532:26;;16604:9;16598:4;16594:20;16590:1;16579:9;16575:17;16568:47;16632:131;16758:4;16632:131;:::i;:::-;16624:139;;16351:419;;;:::o;16776:::-;16942:4;16980:2;16969:9;16965:18;16957:26;;17029:9;17023:4;17019:20;17015:1;17004:9;17000:17;16993:47;17057:131;17183:4;17057:131;:::i;:::-;17049:139;;16776:419;;;:::o;17201:::-;17367:4;17405:2;17394:9;17390:18;17382:26;;17454:9;17448:4;17444:20;17440:1;17429:9;17425:17;17418:47;17482:131;17608:4;17482:131;:::i;:::-;17474:139;;17201:419;;;:::o;17626:::-;17792:4;17830:2;17819:9;17815:18;17807:26;;17879:9;17873:4;17869:20;17865:1;17854:9;17850:17;17843:47;17907:131;18033:4;17907:131;:::i;:::-;17899:139;;17626:419;;;:::o;18051:::-;18217:4;18255:2;18244:9;18240:18;18232:26;;18304:9;18298:4;18294:20;18290:1;18279:9;18275:17;18268:47;18332:131;18458:4;18332:131;:::i;:::-;18324:139;;18051:419;;;:::o;18476:::-;18642:4;18680:2;18669:9;18665:18;18657:26;;18729:9;18723:4;18719:20;18715:1;18704:9;18700:17;18693:47;18757:131;18883:4;18757:131;:::i;:::-;18749:139;;18476:419;;;:::o;18901:::-;19067:4;19105:2;19094:9;19090:18;19082:26;;19154:9;19148:4;19144:20;19140:1;19129:9;19125:17;19118:47;19182:131;19308:4;19182:131;:::i;:::-;19174:139;;18901:419;;;:::o;19326:::-;19492:4;19530:2;19519:9;19515:18;19507:26;;19579:9;19573:4;19569:20;19565:1;19554:9;19550:17;19543:47;19607:131;19733:4;19607:131;:::i;:::-;19599:139;;19326:419;;;:::o;19751:::-;19917:4;19955:2;19944:9;19940:18;19932:26;;20004:9;19998:4;19994:20;19990:1;19979:9;19975:17;19968:47;20032:131;20158:4;20032:131;:::i;:::-;20024:139;;19751:419;;;:::o;20176:222::-;20269:4;20307:2;20296:9;20292:18;20284:26;;20320:71;20388:1;20377:9;20373:17;20364:6;20320:71;:::i;:::-;20176:222;;;;:::o;20404:214::-;20493:4;20531:2;20520:9;20516:18;20508:26;;20544:67;20608:1;20597:9;20593:17;20584:6;20544:67;:::i;:::-;20404:214;;;;:::o;20624:129::-;20658:6;20685:20;;:::i;:::-;20675:30;;20714:33;20742:4;20734:6;20714:33;:::i;:::-;20624:129;;;:::o;20759:75::-;20792:6;20825:2;20819:9;20809:19;;20759:75;:::o;20840:307::-;20901:4;20991:18;20983:6;20980:30;20977:56;;;21013:18;;:::i;:::-;20977:56;21051:29;21073:6;21051:29;:::i;:::-;21043:37;;21135:4;21129;21125:15;21117:23;;20840:307;;;:::o;21153:308::-;21215:4;21305:18;21297:6;21294:30;21291:56;;;21327:18;;:::i;:::-;21291:56;21365:29;21387:6;21365:29;:::i;:::-;21357:37;;21449:4;21443;21439:15;21431:23;;21153:308;;;:::o;21467:98::-;21518:6;21552:5;21546:12;21536:22;;21467:98;;;:::o;21571:99::-;21623:6;21657:5;21651:12;21641:22;;21571:99;;;:::o;21676:168::-;21759:11;21793:6;21788:3;21781:19;21833:4;21828:3;21824:14;21809:29;;21676:168;;;;:::o;21850:147::-;21951:11;21988:3;21973:18;;21850:147;;;;:::o;22003:169::-;22087:11;22121:6;22116:3;22109:19;22161:4;22156:3;22152:14;22137:29;;22003:169;;;;:::o;22178:148::-;22280:11;22317:3;22302:18;;22178:148;;;;:::o;22332:305::-;22372:3;22391:20;22409:1;22391:20;:::i;:::-;22386:25;;22425:20;22443:1;22425:20;:::i;:::-;22420:25;;22579:1;22511:66;22507:74;22504:1;22501:81;22498:107;;;22585:18;;:::i;:::-;22498:107;22629:1;22626;22622:9;22615:16;;22332:305;;;;:::o;22643:348::-;22683:7;22706:20;22724:1;22706:20;:::i;:::-;22701:25;;22740:20;22758:1;22740:20;:::i;:::-;22735:25;;22928:1;22860:66;22856:74;22853:1;22850:81;22845:1;22838:9;22831:17;22827:105;22824:131;;;22935:18;;:::i;:::-;22824:131;22983:1;22980;22976:9;22965:20;;22643:348;;;;:::o;22997:96::-;23034:7;23063:24;23081:5;23063:24;:::i;:::-;23052:35;;22997:96;;;:::o;23099:90::-;23133:7;23176:5;23169:13;23162:21;23151:32;;23099:90;;;:::o;23195:149::-;23231:7;23271:66;23264:5;23260:78;23249:89;;23195:149;;;:::o;23350:126::-;23387:7;23427:42;23420:5;23416:54;23405:65;;23350:126;;;:::o;23482:77::-;23519:7;23548:5;23537:16;;23482:77;;;:::o;23565:86::-;23600:7;23640:4;23633:5;23629:16;23618:27;;23565:86;;;:::o;23657:154::-;23741:6;23736:3;23731;23718:30;23803:1;23794:6;23789:3;23785:16;23778:27;23657:154;;;:::o;23817:307::-;23885:1;23895:113;23909:6;23906:1;23903:13;23895:113;;;23994:1;23989:3;23985:11;23979:18;23975:1;23970:3;23966:11;23959:39;23931:2;23928:1;23924:10;23919:15;;23895:113;;;24026:6;24023:1;24020:13;24017:101;;;24106:1;24097:6;24092:3;24088:16;24081:27;24017:101;23866:258;23817:307;;;:::o;24130:320::-;24174:6;24211:1;24205:4;24201:12;24191:22;;24258:1;24252:4;24248:12;24279:18;24269:81;;24335:4;24327:6;24323:17;24313:27;;24269:81;24397:2;24389:6;24386:14;24366:18;24363:38;24360:84;;;24416:18;;:::i;:::-;24360:84;24181:269;24130:320;;;:::o;24456:281::-;24539:27;24561:4;24539:27;:::i;:::-;24531:6;24527:40;24669:6;24657:10;24654:22;24633:18;24621:10;24618:34;24615:62;24612:88;;;24680:18;;:::i;:::-;24612:88;24720:10;24716:2;24709:22;24499:238;24456:281;;:::o;24743:180::-;24791:77;24788:1;24781:88;24888:4;24885:1;24878:15;24912:4;24909:1;24902:15;24929:180;24977:77;24974:1;24967:88;25074:4;25071:1;25064:15;25098:4;25095:1;25088:15;25115:180;25163:77;25160:1;25153:88;25260:4;25257:1;25250:15;25284:4;25281:1;25274:15;25301:117;25410:1;25407;25400:12;25424:117;25533:1;25530;25523:12;25547:117;25656:1;25653;25646:12;25670:117;25779:1;25776;25769:12;25793:102;25834:6;25885:2;25881:7;25876:2;25869:5;25865:14;25861:28;25851:38;;25793:102;;;:::o;25901:225::-;26041:34;26037:1;26029:6;26025:14;26018:58;26110:8;26105:2;26097:6;26093:15;26086:33;25901:225;:::o;26132:170::-;26272:22;26268:1;26260:6;26256:14;26249:46;26132:170;:::o;26308:222::-;26448:34;26444:1;26436:6;26432:14;26425:58;26517:5;26512:2;26504:6;26500:15;26493:30;26308:222;:::o;26536:182::-;26676:34;26672:1;26664:6;26660:14;26653:58;26536:182;:::o;26724:173::-;26864:25;26860:1;26852:6;26848:14;26841:49;26724:173;:::o;26903:234::-;27043:34;27039:1;27031:6;27027:14;27020:58;27112:17;27107:2;27099:6;27095:15;27088:42;26903:234;:::o;27143:175::-;27283:27;27279:1;27271:6;27267:14;27260:51;27143:175;:::o;27324:114::-;;:::o;27444:170::-;27584:22;27580:1;27572:6;27568:14;27561:46;27444:170;:::o;27620:181::-;27760:33;27756:1;27748:6;27744:14;27737:57;27620:181;:::o;27807:169::-;27947:21;27943:1;27935:6;27931:14;27924:45;27807:169;:::o;27982:122::-;28055:24;28073:5;28055:24;:::i;:::-;28048:5;28045:35;28035:63;;28094:1;28091;28084:12;28035:63;27982:122;:::o;28110:116::-;28180:21;28195:5;28180:21;:::i;:::-;28173:5;28170:32;28160:60;;28216:1;28213;28206:12;28160:60;28110:116;:::o;28232:120::-;28304:23;28321:5;28304:23;:::i;:::-;28297:5;28294:34;28284:62;;28342:1;28339;28332:12;28284:62;28232:120;:::o;28358:122::-;28431:24;28449:5;28431:24;:::i;:::-;28424:5;28421:35;28411:63;;28470:1;28467;28460:12;28411:63;28358:122;:::o

Swarm Source

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