ETH Price: $3,304.30 (-3.54%)
Gas: 6 Gwei

Token

Fantasia's World (FantasiasWorld)
 

Overview

Max Total Supply

5,000 FantasiasWorld

Holders

2,458

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 FantasiasWorld
0xfcdd1958008c13b52217a60c58bb5871d783e19e
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:
FantasiasWorld

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-18
*/

// 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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

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

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

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

// File: FantasiasWorld.sol



pragma solidity ^0.8.13;



contract FantasiasWorld is Ownable, ERC721A {
    uint256 public maxSupply                    = 5000;
    uint256 public maxFreeSupply                = 5000;

    uint256 public maxPerAddressDuringFreeMint  = 2;
    uint256 public maxPerTxDuringMint           = 20;
    uint256 public maxPerAddressDuringMint      = 20;
    
    uint256 public price                        = 0.003 ether;
    bool    public saleIsActive                 = false;

    address constant internal DEV_ADDRESS       = 0xAf1027EC128401B8B595e1dcB9aeee06F1ea2718;
    address constant internal TEAM_ADDRESS      = 0xAf1027EC128401B8B595e1dcB9aeee06F1ea2718;

    string private _baseTokenURI;

    mapping(address => uint256) public mintedAmount;
    mapping(address => uint256) public freeMintedAmount;

    constructor() ERC721A("Fantasia's World", "FantasiasWorld") {}

    modifier mintCompliance() {
        require(saleIsActive, "Sale is not active yet.");
        require(tx.origin == msg.sender, "Caller cannot be a contract.");
        _;
    }

    function mint(uint256 _quantity) external payable mintCompliance() {
        require(
            maxSupply >= totalSupply() + _quantity,
            "FantasiasWorld: Exceeds max supply."
        );
        uint256 _mintedAmount = mintedAmount[msg.sender];
        require(
            _mintedAmount + _quantity <= maxPerAddressDuringMint,
            "FantasiasWorld: Exceeds max mints per address!"
        );
        require(
            _quantity > 0 && _quantity <= maxPerTxDuringMint,
            "Invalid mint amount."
        );
        mintedAmount[msg.sender] = _mintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
        refundIfOver(price * _quantity);
    }

    function freeMint(uint256 _quantity) external mintCompliance() {
        require(
            maxFreeSupply >= totalSupply() + _quantity, 
            "FantasiasWorld: Exceeds max free supply."
        );
        uint256 _freeMintedAmount = freeMintedAmount[msg.sender];
        require(
            _freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint,
            "FantasiasWorld: Exceeds max free mints per address!"
        );
        require(
            _quantity > 0 && _quantity <= maxPerAddressDuringFreeMint,
            "Invalid free mint amount."
        );
        freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function devMint(address _receiver, uint256 _quantity) external onlyOwner {
	    require(
            maxSupply >= totalSupply() + _quantity,
            "Cannot reserve more than max supply"
        );
        _safeMint(_receiver, _quantity);
    }

    function refundIfOver(uint256 _price) private {
        require(msg.value >= _price, "Not enough ETH sent.");
        if (msg.value > _price) {
            payable(msg.sender).transfer(msg.value - _price);
        }
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTxDuringMint = _amount;
    }

    function setMaxPerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringMint = _amount;
    }

    function setMaxFreePerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringFreeMint = _amount;
    }

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

    function addMaxFreeSupply(uint256 _amount) public onlyOwner {
        require(
            maxFreeSupply + _amount <= maxSupply, 
            "Max free supply cannot exceed max supply."
        );
        maxFreeSupply += _amount;
    }

    function cutMaxSupply(uint256 _amount) public onlyOwner {
        require(
            maxSupply - _amount >= totalSupply(), 
            "Supply cannot fall below minted tokens."
        );
        maxSupply -= _amount;
    }

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

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

    function withdrawBalance() external onlyOwner {
        uint256 _balance = address(this).balance;

        (bool success, ) = payable(DEV_ADDRESS).call{
            value: (_balance * 2200) / 10000
        }("");
        require(success, "DEV_ADDRESS transfer failed.");

        (success, ) = payable(TEAM_ADDRESS).call{
            value: address(this).balance
        }("");
        require(success, "TEAM_ADDRESS transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"addMaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","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":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611388600955611388600a556002600b556014600c556014600d55660aa87bee538000600e556000600f60006101000a81548160ff0219169083151502179055503480156200005257600080fd5b506040518060400160405280601081526020017f46616e7461736961277320576f726c64000000000000000000000000000000008152506040518060400160405280600e81526020017f46616e746173696173576f726c64000000000000000000000000000000000000815250620000df620000d36200012f60201b60201c565b6200013760201b60201c565b8160039080519060200190620000f792919062000200565b5080600490805190602001906200011092919062000200565b5062000121620001fb60201b60201c565b600181905550505062000314565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b8280546200020e90620002df565b90600052602060002090601f0160209004810192826200023257600085556200027e565b82601f106200024d57805160ff19168380011785556200027e565b828001600101855582156200027e579182015b828111156200027d57825182559160200191906001019062000260565b5b5090506200028d919062000291565b5090565b5b80821115620002ac57600081600090555060010162000292565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002f857607f821691505b6020821081036200030e576200030d620002b0565b5b50919050565b613dc380620003246000396000f3fe6080604052600436106102255760003560e01c80637c928fe911610123578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb01146107ba578063e985e9c5146107e5578063eb8d244414610822578063f2fde38b1461084d578063fbbf8cc31461087657610225565b8063b88d4fde146106d7578063bbb6431914610700578063c6f6f21614610729578063c87b56dd14610752578063d3464cbd1461078f57610225565b806395d89b41116100f257806395d89b41146105ff57806396b102011461062a578063a035b1fe14610667578063a0712d6814610692578063a22cb465146106ae57610225565b80637c928fe9146105575780638bc35c2f146105805780638da5cb5b146105ab57806391b7f5ed146105d657610225565b806347513334116101b15780636352211e116101755780636352211e1461048657806370a08231146104c3578063715018a6146105005780637ba5e621146105175780637bddd65b1461052e57610225565b806347513334146103c95780635416a271146103f457806355f804b31461041d5780635fd8c71014610446578063627804af1461045d57610225565b80631141df20116101f85780631141df20146102f857806318160ddd1461032157806323b872dd1461034c5780632e0fd6eb1461037557806342842e0e146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612c3d565b6108b3565b60405161025e9190612c85565b60405180910390f35b34801561027357600080fd5b5061027c610945565b6040516102899190612d39565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612d91565b6109d7565b6040516102c69190612dff565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612e46565b610a53565b005b34801561030457600080fd5b5061031f600480360381019061031a9190612d91565b610bf9565b005b34801561032d57600080fd5b50610336610ce8565b6040516103439190612e95565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190612eb0565b610cff565b005b34801561038157600080fd5b5061038a610d0f565b6040516103979190612e95565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612eb0565b610d15565b005b3480156103d557600080fd5b506103de610d35565b6040516103eb9190612e95565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190612d91565b610d3b565b005b34801561042957600080fd5b50610444600480360381019061043f9190612f68565b610e25565b005b34801561045257600080fd5b5061045b610eb7565b005b34801561046957600080fd5b50610484600480360381019061047f9190612e46565b6110d6565b005b34801561049257600080fd5b506104ad60048036038101906104a89190612d91565b6111b7565b6040516104ba9190612dff565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190612fb5565b6111c9565b6040516104f79190612e95565b60405180910390f35b34801561050c57600080fd5b50610515611281565b005b34801561052357600080fd5b5061052c611309565b005b34801561053a57600080fd5b5061055560048036038101906105509190612d91565b6113b1565b005b34801561056357600080fd5b5061057e60048036038101906105799190612d91565b611437565b005b34801561058c57600080fd5b5061059561168d565b6040516105a29190612e95565b60405180910390f35b3480156105b757600080fd5b506105c0611693565b6040516105cd9190612dff565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f89190612d91565b6116bc565b005b34801561060b57600080fd5b50610614611742565b6040516106219190612d39565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c9190612fb5565b6117d4565b60405161065e9190612e95565b60405180910390f35b34801561067357600080fd5b5061067c6117ec565b6040516106899190612e95565b60405180910390f35b6106ac60048036038101906106a79190612d91565b6117f2565b005b3480156106ba57600080fd5b506106d560048036038101906106d0919061300e565b611a5e565b005b3480156106e357600080fd5b506106fe60048036038101906106f9919061317e565b611bd5565b005b34801561070c57600080fd5b5061072760048036038101906107229190612d91565b611c48565b005b34801561073557600080fd5b50610750600480360381019061074b9190612d91565b611cce565b005b34801561075e57600080fd5b5061077960048036038101906107749190612d91565b611d54565b6040516107869190612d39565b60405180910390f35b34801561079b57600080fd5b506107a4611df2565b6040516107b19190612e95565b60405180910390f35b3480156107c657600080fd5b506107cf611df8565b6040516107dc9190612e95565b60405180910390f35b3480156107f157600080fd5b5061080c60048036038101906108079190613201565b611dfe565b6040516108199190612c85565b60405180910390f35b34801561082e57600080fd5b50610837611e92565b6040516108449190612c85565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190612fb5565b611ea5565b005b34801561088257600080fd5b5061089d60048036038101906108989190612fb5565b611f9c565b6040516108aa9190612e95565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461095490613270565b80601f016020809104026020016040519081016040528092919081815260200182805461098090613270565b80156109cd5780601f106109a2576101008083540402835291602001916109cd565b820191906000526020600020905b8154815290600101906020018083116109b057829003601f168201915b5050505050905090565b60006109e282611fb4565b610a18576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5e82612013565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ac5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae46120df565b73ffffffffffffffffffffffffffffffffffffffff1614610b4757610b1081610b0b6120df565b611dfe565b610b46576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c016120e7565b73ffffffffffffffffffffffffffffffffffffffff16610c1f611693565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906132ed565b60405180910390fd5b610c7d610ce8565b81600954610c8b919061333c565b1015610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc3906133e2565b60405180910390fd5b8060096000828254610cde919061333c565b9250508190555050565b6000610cf26120ef565b6002546001540303905090565b610d0a8383836120f4565b505050565b600b5481565b610d3083838360405180602001604052806000815250611bd5565b505050565b600a5481565b610d436120e7565b73ffffffffffffffffffffffffffffffffffffffff16610d61611693565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906132ed565b60405180910390fd5b60095481600a54610dc89190613402565b1115610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e00906134ca565b60405180910390fd5b80600a6000828254610e1b9190613402565b9250508190555050565b610e2d6120e7565b73ffffffffffffffffffffffffffffffffffffffff16610e4b611693565b73ffffffffffffffffffffffffffffffffffffffff1614610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e98906132ed565b60405180910390fd5b818160109190610eb2929190612b2e565b505050565b610ebf6120e7565b73ffffffffffffffffffffffffffffffffffffffff16610edd611693565b73ffffffffffffffffffffffffffffffffffffffff1614610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a906132ed565b60405180910390fd5b6000479050600073af1027ec128401b8b595e1dcb9aeee06f1ea271873ffffffffffffffffffffffffffffffffffffffff1661271061089884610f7691906134ea565b610f809190613573565b604051610f8c906135d5565b60006040518083038185875af1925050503d8060008114610fc9576040519150601f19603f3d011682016040523d82523d6000602084013e610fce565b606091505b5050905080611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990613636565b60405180910390fd5b73af1027ec128401b8b595e1dcb9aeee06f1ea271873ffffffffffffffffffffffffffffffffffffffff164760405161104a906135d5565b60006040518083038185875af1925050503d8060008114611087576040519150601f19603f3d011682016040523d82523d6000602084013e61108c565b606091505b505080915050806110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c9906136a2565b60405180910390fd5b5050565b6110de6120e7565b73ffffffffffffffffffffffffffffffffffffffff166110fc611693565b73ffffffffffffffffffffffffffffffffffffffff1614611152576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611149906132ed565b60405180910390fd5b8061115b610ce8565b6111659190613402565b60095410156111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613734565b60405180910390fd5b6111b3828261249b565b5050565b60006111c282612013565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611230576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112896120e7565b73ffffffffffffffffffffffffffffffffffffffff166112a7611693565b73ffffffffffffffffffffffffffffffffffffffff16146112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f4906132ed565b60405180910390fd5b61130760006124b9565b565b6113116120e7565b73ffffffffffffffffffffffffffffffffffffffff1661132f611693565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c906132ed565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6113b96120e7565b73ffffffffffffffffffffffffffffffffffffffff166113d7611693565b73ffffffffffffffffffffffffffffffffffffffff161461142d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611424906132ed565b60405180910390fd5b80600d8190555050565b600f60009054906101000a900460ff16611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d906137a0565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb9061380c565b60405180910390fd5b806114fd610ce8565b6115079190613402565b600a54101561154b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115429061389e565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600b54828261159e9190613402565b11156115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690613930565b60405180910390fd5b6000821180156115f15750600b548211155b611630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116279061399c565b60405180910390fd5b818161163c9190613402565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611689338361249b565b5050565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116c46120e7565b73ffffffffffffffffffffffffffffffffffffffff166116e2611693565b73ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f906132ed565b60405180910390fd5b80600e8190555050565b60606004805461175190613270565b80601f016020809104026020016040519081016040528092919081815260200182805461177d90613270565b80156117ca5780601f1061179f576101008083540402835291602001916117ca565b820191906000526020600020905b8154815290600101906020018083116117ad57829003601f168201915b5050505050905090565b60126020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff16611841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611838906137a0565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a69061380c565b60405180910390fd5b806118b8610ce8565b6118c29190613402565b6009541015611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd90613a2e565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d5482826119599190613402565b111561199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190613ac0565b60405180910390fd5b6000821180156119ac5750600c548211155b6119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613b2c565b60405180910390fd5b81816119f79190613402565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a44338361249b565b611a5a82600e54611a5591906134ea565b61257d565b5050565b611a666120df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aca576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611ad76120df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b846120df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bc99190612c85565b60405180910390a35050565b611be08484846120f4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c4257611c0b8484848461261e565b611c41576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611c506120e7565b73ffffffffffffffffffffffffffffffffffffffff16611c6e611693565b73ffffffffffffffffffffffffffffffffffffffff1614611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb906132ed565b60405180910390fd5b80600b8190555050565b611cd66120e7565b73ffffffffffffffffffffffffffffffffffffffff16611cf4611693565b73ffffffffffffffffffffffffffffffffffffffff1614611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d41906132ed565b60405180910390fd5b80600c8190555050565b6060611d5f82611fb4565b611d95576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d9f61276e565b90506000815103611dbf5760405180602001604052806000815250611dea565b80611dc984612800565b604051602001611dda929190613b88565b6040516020818303038152906040525b915050919050565b600c5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611ead6120e7565b73ffffffffffffffffffffffffffffffffffffffff16611ecb611693565b73ffffffffffffffffffffffffffffffffffffffff1614611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f18906132ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790613c1e565b60405180910390fd5b611f99816124b9565b50565b60116020528060005260406000206000915090505481565b600081611fbf6120ef565b11158015611fce575060015482105b801561200c575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600080829050806120226120ef565b116120a8576001548110156120a75760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120a5575b6000810361209b576005600083600190039350838152602001908152602001600020549050612071565b80925050506120da565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b60006120ff82612013565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612166576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121876120df565b73ffffffffffffffffffffffffffffffffffffffff1614806121b657506121b5856121b06120df565b611dfe565b5b806121fb57506121c46120df565b73ffffffffffffffffffffffffffffffffffffffff166121e3846109d7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612234576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361229a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122a7858585600161285a565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6123a486612860565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083160361242c576000600184019050600060056000838152602001908152602001600020540361242a576001548114612429578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612494858585600161286a565b5050505050565b6124b5828260405180602001604052806000815250612870565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b803410156125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b790613c8a565b60405180910390fd5b8034111561261b573373ffffffffffffffffffffffffffffffffffffffff166108fc82346125ee919061333c565b9081150290604051600060405180830381858888f19350505050158015612619573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126446120df565b8786866040518563ffffffff1660e01b81526004016126669493929190613cff565b6020604051808303816000875af19250505080156126a257506040513d601f19601f8201168201806040525081019061269f9190613d60565b60015b61271b573d80600081146126d2576040519150601f19603f3d011682016040523d82523d6000602084013e6126d7565b606091505b506000815103612713576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461277d90613270565b80601f01602080910402602001604051908101604052809291908181526020018280546127a990613270565b80156127f65780601f106127cb576101008083540402835291602001916127f6565b820191906000526020600020905b8154815290600101906020018083116127d957829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561284657600183039250600a81066030018353600a81049050612826565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128dd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612917576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612924600085838661285a565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161298960018514612b24565b901b60a042901b61299986612860565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612a9d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a4d600087848060010195508761261e565b612a83576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129de578260015414612a9857600080fd5b612b08565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a9e575b816001819055505050612b1e600085838661286a565b50505050565b6000819050919050565b828054612b3a90613270565b90600052602060002090601f016020900481019282612b5c5760008555612ba3565b82601f10612b7557803560ff1916838001178555612ba3565b82800160010185558215612ba3579182015b82811115612ba2578235825591602001919060010190612b87565b5b509050612bb09190612bb4565b5090565b5b80821115612bcd576000816000905550600101612bb5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c1a81612be5565b8114612c2557600080fd5b50565b600081359050612c3781612c11565b92915050565b600060208284031215612c5357612c52612bdb565b5b6000612c6184828501612c28565b91505092915050565b60008115159050919050565b612c7f81612c6a565b82525050565b6000602082019050612c9a6000830184612c76565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cda578082015181840152602081019050612cbf565b83811115612ce9576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d0b82612ca0565b612d158185612cab565b9350612d25818560208601612cbc565b612d2e81612cef565b840191505092915050565b60006020820190508181036000830152612d538184612d00565b905092915050565b6000819050919050565b612d6e81612d5b565b8114612d7957600080fd5b50565b600081359050612d8b81612d65565b92915050565b600060208284031215612da757612da6612bdb565b5b6000612db584828501612d7c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612de982612dbe565b9050919050565b612df981612dde565b82525050565b6000602082019050612e146000830184612df0565b92915050565b612e2381612dde565b8114612e2e57600080fd5b50565b600081359050612e4081612e1a565b92915050565b60008060408385031215612e5d57612e5c612bdb565b5b6000612e6b85828601612e31565b9250506020612e7c85828601612d7c565b9150509250929050565b612e8f81612d5b565b82525050565b6000602082019050612eaa6000830184612e86565b92915050565b600080600060608486031215612ec957612ec8612bdb565b5b6000612ed786828701612e31565b9350506020612ee886828701612e31565b9250506040612ef986828701612d7c565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612f2857612f27612f03565b5b8235905067ffffffffffffffff811115612f4557612f44612f08565b5b602083019150836001820283011115612f6157612f60612f0d565b5b9250929050565b60008060208385031215612f7f57612f7e612bdb565b5b600083013567ffffffffffffffff811115612f9d57612f9c612be0565b5b612fa985828601612f12565b92509250509250929050565b600060208284031215612fcb57612fca612bdb565b5b6000612fd984828501612e31565b91505092915050565b612feb81612c6a565b8114612ff657600080fd5b50565b60008135905061300881612fe2565b92915050565b6000806040838503121561302557613024612bdb565b5b600061303385828601612e31565b925050602061304485828601612ff9565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61308b82612cef565b810181811067ffffffffffffffff821117156130aa576130a9613053565b5b80604052505050565b60006130bd612bd1565b90506130c98282613082565b919050565b600067ffffffffffffffff8211156130e9576130e8613053565b5b6130f282612cef565b9050602081019050919050565b82818337600083830152505050565b600061312161311c846130ce565b6130b3565b90508281526020810184848401111561313d5761313c61304e565b5b6131488482856130ff565b509392505050565b600082601f83011261316557613164612f03565b5b813561317584826020860161310e565b91505092915050565b6000806000806080858703121561319857613197612bdb565b5b60006131a687828801612e31565b94505060206131b787828801612e31565b93505060406131c887828801612d7c565b925050606085013567ffffffffffffffff8111156131e9576131e8612be0565b5b6131f587828801613150565b91505092959194509250565b6000806040838503121561321857613217612bdb565b5b600061322685828601612e31565b925050602061323785828601612e31565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061328857607f821691505b60208210810361329b5761329a613241565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132d7602083612cab565b91506132e2826132a1565b602082019050919050565b60006020820190508181036000830152613306816132ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061334782612d5b565b915061335283612d5b565b9250828210156133655761336461330d565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b60006133cc602783612cab565b91506133d782613370565b604082019050919050565b600060208201905081810360008301526133fb816133bf565b9050919050565b600061340d82612d5b565b915061341883612d5b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561344d5761344c61330d565b5b828201905092915050565b7f4d6178206672656520737570706c792063616e6e6f7420657863656564206d6160008201527f7820737570706c792e0000000000000000000000000000000000000000000000602082015250565b60006134b4602983612cab565b91506134bf82613458565b604082019050919050565b600060208201905081810360008301526134e3816134a7565b9050919050565b60006134f582612d5b565b915061350083612d5b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135395761353861330d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061357e82612d5b565b915061358983612d5b565b92508261359957613598613544565b5b828204905092915050565b600081905092915050565b50565b60006135bf6000836135a4565b91506135ca826135af565b600082019050919050565b60006135e0826135b2565b9150819050919050565b7f4445565f41444452455353207472616e73666572206661696c65642e00000000600082015250565b6000613620601c83612cab565b915061362b826135ea565b602082019050919050565b6000602082019050818103600083015261364f81613613565b9050919050565b7f5445414d5f41444452455353207472616e73666572206661696c65642e000000600082015250565b600061368c601d83612cab565b915061369782613656565b602082019050919050565b600060208201905081810360008301526136bb8161367f565b9050919050565b7f43616e6e6f742072657365727665206d6f7265207468616e206d61782073757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b600061371e602383612cab565b9150613729826136c2565b604082019050919050565b6000602082019050818103600083015261374d81613711565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b600061378a601783612cab565b915061379582613754565b602082019050919050565b600060208201905081810360008301526137b98161377d565b9050919050565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b60006137f6601c83612cab565b9150613801826137c0565b602082019050919050565b60006020820190508181036000830152613825816137e9565b9050919050565b7f46616e746173696173576f726c643a2045786365656473206d6178206672656560008201527f20737570706c792e000000000000000000000000000000000000000000000000602082015250565b6000613888602883612cab565b91506138938261382c565b604082019050919050565b600060208201905081810360008301526138b78161387b565b9050919050565b7f46616e746173696173576f726c643a2045786365656473206d6178206672656560008201527f206d696e74732070657220616464726573732100000000000000000000000000602082015250565b600061391a603383612cab565b9150613925826138be565b604082019050919050565b600060208201905081810360008301526139498161390d565b9050919050565b7f496e76616c69642066726565206d696e7420616d6f756e742e00000000000000600082015250565b6000613986601983612cab565b915061399182613950565b602082019050919050565b600060208201905081810360008301526139b581613979565b9050919050565b7f46616e746173696173576f726c643a2045786365656473206d6178207375707060008201527f6c792e0000000000000000000000000000000000000000000000000000000000602082015250565b6000613a18602383612cab565b9150613a23826139bc565b604082019050919050565b60006020820190508181036000830152613a4781613a0b565b9050919050565b7f46616e746173696173576f726c643a2045786365656473206d6178206d696e7460008201527f7320706572206164647265737321000000000000000000000000000000000000602082015250565b6000613aaa602e83612cab565b9150613ab582613a4e565b604082019050919050565b60006020820190508181036000830152613ad981613a9d565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b6000613b16601483612cab565b9150613b2182613ae0565b602082019050919050565b60006020820190508181036000830152613b4581613b09565b9050919050565b600081905092915050565b6000613b6282612ca0565b613b6c8185613b4c565b9350613b7c818560208601612cbc565b80840191505092915050565b6000613b948285613b57565b9150613ba08284613b57565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c08602683612cab565b9150613c1382613bac565b604082019050919050565b60006020820190508181036000830152613c3781613bfb565b9050919050565b7f4e6f7420656e6f756768204554482073656e742e000000000000000000000000600082015250565b6000613c74601483612cab565b9150613c7f82613c3e565b602082019050919050565b60006020820190508181036000830152613ca381613c67565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cd182613caa565b613cdb8185613cb5565b9350613ceb818560208601612cbc565b613cf481612cef565b840191505092915050565b6000608082019050613d146000830187612df0565b613d216020830186612df0565b613d2e6040830185612e86565b8181036060830152613d408184613cc6565b905095945050505050565b600081519050613d5a81612c11565b92915050565b600060208284031215613d7657613d75612bdb565b5b6000613d8484828501613d4b565b9150509291505056fea264697066735822122098a8ebad36cf225b5a385ae7f067089feef0993b8c0912afcd89285e012ebdcc64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637c928fe911610123578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb01146107ba578063e985e9c5146107e5578063eb8d244414610822578063f2fde38b1461084d578063fbbf8cc31461087657610225565b8063b88d4fde146106d7578063bbb6431914610700578063c6f6f21614610729578063c87b56dd14610752578063d3464cbd1461078f57610225565b806395d89b41116100f257806395d89b41146105ff57806396b102011461062a578063a035b1fe14610667578063a0712d6814610692578063a22cb465146106ae57610225565b80637c928fe9146105575780638bc35c2f146105805780638da5cb5b146105ab57806391b7f5ed146105d657610225565b806347513334116101b15780636352211e116101755780636352211e1461048657806370a08231146104c3578063715018a6146105005780637ba5e621146105175780637bddd65b1461052e57610225565b806347513334146103c95780635416a271146103f457806355f804b31461041d5780635fd8c71014610446578063627804af1461045d57610225565b80631141df20116101f85780631141df20146102f857806318160ddd1461032157806323b872dd1461034c5780632e0fd6eb1461037557806342842e0e146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612c3d565b6108b3565b60405161025e9190612c85565b60405180910390f35b34801561027357600080fd5b5061027c610945565b6040516102899190612d39565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612d91565b6109d7565b6040516102c69190612dff565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612e46565b610a53565b005b34801561030457600080fd5b5061031f600480360381019061031a9190612d91565b610bf9565b005b34801561032d57600080fd5b50610336610ce8565b6040516103439190612e95565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190612eb0565b610cff565b005b34801561038157600080fd5b5061038a610d0f565b6040516103979190612e95565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612eb0565b610d15565b005b3480156103d557600080fd5b506103de610d35565b6040516103eb9190612e95565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190612d91565b610d3b565b005b34801561042957600080fd5b50610444600480360381019061043f9190612f68565b610e25565b005b34801561045257600080fd5b5061045b610eb7565b005b34801561046957600080fd5b50610484600480360381019061047f9190612e46565b6110d6565b005b34801561049257600080fd5b506104ad60048036038101906104a89190612d91565b6111b7565b6040516104ba9190612dff565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190612fb5565b6111c9565b6040516104f79190612e95565b60405180910390f35b34801561050c57600080fd5b50610515611281565b005b34801561052357600080fd5b5061052c611309565b005b34801561053a57600080fd5b5061055560048036038101906105509190612d91565b6113b1565b005b34801561056357600080fd5b5061057e60048036038101906105799190612d91565b611437565b005b34801561058c57600080fd5b5061059561168d565b6040516105a29190612e95565b60405180910390f35b3480156105b757600080fd5b506105c0611693565b6040516105cd9190612dff565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f89190612d91565b6116bc565b005b34801561060b57600080fd5b50610614611742565b6040516106219190612d39565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c9190612fb5565b6117d4565b60405161065e9190612e95565b60405180910390f35b34801561067357600080fd5b5061067c6117ec565b6040516106899190612e95565b60405180910390f35b6106ac60048036038101906106a79190612d91565b6117f2565b005b3480156106ba57600080fd5b506106d560048036038101906106d0919061300e565b611a5e565b005b3480156106e357600080fd5b506106fe60048036038101906106f9919061317e565b611bd5565b005b34801561070c57600080fd5b5061072760048036038101906107229190612d91565b611c48565b005b34801561073557600080fd5b50610750600480360381019061074b9190612d91565b611cce565b005b34801561075e57600080fd5b5061077960048036038101906107749190612d91565b611d54565b6040516107869190612d39565b60405180910390f35b34801561079b57600080fd5b506107a4611df2565b6040516107b19190612e95565b60405180910390f35b3480156107c657600080fd5b506107cf611df8565b6040516107dc9190612e95565b60405180910390f35b3480156107f157600080fd5b5061080c60048036038101906108079190613201565b611dfe565b6040516108199190612c85565b60405180910390f35b34801561082e57600080fd5b50610837611e92565b6040516108449190612c85565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190612fb5565b611ea5565b005b34801561088257600080fd5b5061089d60048036038101906108989190612fb5565b611f9c565b6040516108aa9190612e95565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461095490613270565b80601f016020809104026020016040519081016040528092919081815260200182805461098090613270565b80156109cd5780601f106109a2576101008083540402835291602001916109cd565b820191906000526020600020905b8154815290600101906020018083116109b057829003601f168201915b5050505050905090565b60006109e282611fb4565b610a18576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5e82612013565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ac5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae46120df565b73ffffffffffffffffffffffffffffffffffffffff1614610b4757610b1081610b0b6120df565b611dfe565b610b46576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c016120e7565b73ffffffffffffffffffffffffffffffffffffffff16610c1f611693565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906132ed565b60405180910390fd5b610c7d610ce8565b81600954610c8b919061333c565b1015610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc3906133e2565b60405180910390fd5b8060096000828254610cde919061333c565b9250508190555050565b6000610cf26120ef565b6002546001540303905090565b610d0a8383836120f4565b505050565b600b5481565b610d3083838360405180602001604052806000815250611bd5565b505050565b600a5481565b610d436120e7565b73ffffffffffffffffffffffffffffffffffffffff16610d61611693565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906132ed565b60405180910390fd5b60095481600a54610dc89190613402565b1115610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e00906134ca565b60405180910390fd5b80600a6000828254610e1b9190613402565b9250508190555050565b610e2d6120e7565b73ffffffffffffffffffffffffffffffffffffffff16610e4b611693565b73ffffffffffffffffffffffffffffffffffffffff1614610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e98906132ed565b60405180910390fd5b818160109190610eb2929190612b2e565b505050565b610ebf6120e7565b73ffffffffffffffffffffffffffffffffffffffff16610edd611693565b73ffffffffffffffffffffffffffffffffffffffff1614610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a906132ed565b60405180910390fd5b6000479050600073af1027ec128401b8b595e1dcb9aeee06f1ea271873ffffffffffffffffffffffffffffffffffffffff1661271061089884610f7691906134ea565b610f809190613573565b604051610f8c906135d5565b60006040518083038185875af1925050503d8060008114610fc9576040519150601f19603f3d011682016040523d82523d6000602084013e610fce565b606091505b5050905080611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990613636565b60405180910390fd5b73af1027ec128401b8b595e1dcb9aeee06f1ea271873ffffffffffffffffffffffffffffffffffffffff164760405161104a906135d5565b60006040518083038185875af1925050503d8060008114611087576040519150601f19603f3d011682016040523d82523d6000602084013e61108c565b606091505b505080915050806110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c9906136a2565b60405180910390fd5b5050565b6110de6120e7565b73ffffffffffffffffffffffffffffffffffffffff166110fc611693565b73ffffffffffffffffffffffffffffffffffffffff1614611152576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611149906132ed565b60405180910390fd5b8061115b610ce8565b6111659190613402565b60095410156111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613734565b60405180910390fd5b6111b3828261249b565b5050565b60006111c282612013565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611230576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112896120e7565b73ffffffffffffffffffffffffffffffffffffffff166112a7611693565b73ffffffffffffffffffffffffffffffffffffffff16146112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f4906132ed565b60405180910390fd5b61130760006124b9565b565b6113116120e7565b73ffffffffffffffffffffffffffffffffffffffff1661132f611693565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c906132ed565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6113b96120e7565b73ffffffffffffffffffffffffffffffffffffffff166113d7611693565b73ffffffffffffffffffffffffffffffffffffffff161461142d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611424906132ed565b60405180910390fd5b80600d8190555050565b600f60009054906101000a900460ff16611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d906137a0565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb9061380c565b60405180910390fd5b806114fd610ce8565b6115079190613402565b600a54101561154b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115429061389e565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600b54828261159e9190613402565b11156115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690613930565b60405180910390fd5b6000821180156115f15750600b548211155b611630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116279061399c565b60405180910390fd5b818161163c9190613402565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611689338361249b565b5050565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116c46120e7565b73ffffffffffffffffffffffffffffffffffffffff166116e2611693565b73ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f906132ed565b60405180910390fd5b80600e8190555050565b60606004805461175190613270565b80601f016020809104026020016040519081016040528092919081815260200182805461177d90613270565b80156117ca5780601f1061179f576101008083540402835291602001916117ca565b820191906000526020600020905b8154815290600101906020018083116117ad57829003601f168201915b5050505050905090565b60126020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff16611841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611838906137a0565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a69061380c565b60405180910390fd5b806118b8610ce8565b6118c29190613402565b6009541015611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd90613a2e565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d5482826119599190613402565b111561199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190613ac0565b60405180910390fd5b6000821180156119ac5750600c548211155b6119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613b2c565b60405180910390fd5b81816119f79190613402565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a44338361249b565b611a5a82600e54611a5591906134ea565b61257d565b5050565b611a666120df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aca576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611ad76120df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b846120df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bc99190612c85565b60405180910390a35050565b611be08484846120f4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c4257611c0b8484848461261e565b611c41576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611c506120e7565b73ffffffffffffffffffffffffffffffffffffffff16611c6e611693565b73ffffffffffffffffffffffffffffffffffffffff1614611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb906132ed565b60405180910390fd5b80600b8190555050565b611cd66120e7565b73ffffffffffffffffffffffffffffffffffffffff16611cf4611693565b73ffffffffffffffffffffffffffffffffffffffff1614611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d41906132ed565b60405180910390fd5b80600c8190555050565b6060611d5f82611fb4565b611d95576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d9f61276e565b90506000815103611dbf5760405180602001604052806000815250611dea565b80611dc984612800565b604051602001611dda929190613b88565b6040516020818303038152906040525b915050919050565b600c5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611ead6120e7565b73ffffffffffffffffffffffffffffffffffffffff16611ecb611693565b73ffffffffffffffffffffffffffffffffffffffff1614611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f18906132ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790613c1e565b60405180910390fd5b611f99816124b9565b50565b60116020528060005260406000206000915090505481565b600081611fbf6120ef565b11158015611fce575060015482105b801561200c575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600080829050806120226120ef565b116120a8576001548110156120a75760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120a5575b6000810361209b576005600083600190039350838152602001908152602001600020549050612071565b80925050506120da565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b60006120ff82612013565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612166576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121876120df565b73ffffffffffffffffffffffffffffffffffffffff1614806121b657506121b5856121b06120df565b611dfe565b5b806121fb57506121c46120df565b73ffffffffffffffffffffffffffffffffffffffff166121e3846109d7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612234576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361229a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122a7858585600161285a565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6123a486612860565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083160361242c576000600184019050600060056000838152602001908152602001600020540361242a576001548114612429578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612494858585600161286a565b5050505050565b6124b5828260405180602001604052806000815250612870565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b803410156125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b790613c8a565b60405180910390fd5b8034111561261b573373ffffffffffffffffffffffffffffffffffffffff166108fc82346125ee919061333c565b9081150290604051600060405180830381858888f19350505050158015612619573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126446120df565b8786866040518563ffffffff1660e01b81526004016126669493929190613cff565b6020604051808303816000875af19250505080156126a257506040513d601f19601f8201168201806040525081019061269f9190613d60565b60015b61271b573d80600081146126d2576040519150601f19603f3d011682016040523d82523d6000602084013e6126d7565b606091505b506000815103612713576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461277d90613270565b80601f01602080910402602001604051908101604052809291908181526020018280546127a990613270565b80156127f65780601f106127cb576101008083540402835291602001916127f6565b820191906000526020600020905b8154815290600101906020018083116127d957829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561284657600183039250600a81066030018353600a81049050612826565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128dd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612917576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612924600085838661285a565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161298960018514612b24565b901b60a042901b61299986612860565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612a9d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a4d600087848060010195508761261e565b612a83576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129de578260015414612a9857600080fd5b612b08565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a9e575b816001819055505050612b1e600085838661286a565b50505050565b6000819050919050565b828054612b3a90613270565b90600052602060002090601f016020900481019282612b5c5760008555612ba3565b82601f10612b7557803560ff1916838001178555612ba3565b82800160010185558215612ba3579182015b82811115612ba2578235825591602001919060010190612b87565b5b509050612bb09190612bb4565b5090565b5b80821115612bcd576000816000905550600101612bb5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c1a81612be5565b8114612c2557600080fd5b50565b600081359050612c3781612c11565b92915050565b600060208284031215612c5357612c52612bdb565b5b6000612c6184828501612c28565b91505092915050565b60008115159050919050565b612c7f81612c6a565b82525050565b6000602082019050612c9a6000830184612c76565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cda578082015181840152602081019050612cbf565b83811115612ce9576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d0b82612ca0565b612d158185612cab565b9350612d25818560208601612cbc565b612d2e81612cef565b840191505092915050565b60006020820190508181036000830152612d538184612d00565b905092915050565b6000819050919050565b612d6e81612d5b565b8114612d7957600080fd5b50565b600081359050612d8b81612d65565b92915050565b600060208284031215612da757612da6612bdb565b5b6000612db584828501612d7c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612de982612dbe565b9050919050565b612df981612dde565b82525050565b6000602082019050612e146000830184612df0565b92915050565b612e2381612dde565b8114612e2e57600080fd5b50565b600081359050612e4081612e1a565b92915050565b60008060408385031215612e5d57612e5c612bdb565b5b6000612e6b85828601612e31565b9250506020612e7c85828601612d7c565b9150509250929050565b612e8f81612d5b565b82525050565b6000602082019050612eaa6000830184612e86565b92915050565b600080600060608486031215612ec957612ec8612bdb565b5b6000612ed786828701612e31565b9350506020612ee886828701612e31565b9250506040612ef986828701612d7c565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612f2857612f27612f03565b5b8235905067ffffffffffffffff811115612f4557612f44612f08565b5b602083019150836001820283011115612f6157612f60612f0d565b5b9250929050565b60008060208385031215612f7f57612f7e612bdb565b5b600083013567ffffffffffffffff811115612f9d57612f9c612be0565b5b612fa985828601612f12565b92509250509250929050565b600060208284031215612fcb57612fca612bdb565b5b6000612fd984828501612e31565b91505092915050565b612feb81612c6a565b8114612ff657600080fd5b50565b60008135905061300881612fe2565b92915050565b6000806040838503121561302557613024612bdb565b5b600061303385828601612e31565b925050602061304485828601612ff9565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61308b82612cef565b810181811067ffffffffffffffff821117156130aa576130a9613053565b5b80604052505050565b60006130bd612bd1565b90506130c98282613082565b919050565b600067ffffffffffffffff8211156130e9576130e8613053565b5b6130f282612cef565b9050602081019050919050565b82818337600083830152505050565b600061312161311c846130ce565b6130b3565b90508281526020810184848401111561313d5761313c61304e565b5b6131488482856130ff565b509392505050565b600082601f83011261316557613164612f03565b5b813561317584826020860161310e565b91505092915050565b6000806000806080858703121561319857613197612bdb565b5b60006131a687828801612e31565b94505060206131b787828801612e31565b93505060406131c887828801612d7c565b925050606085013567ffffffffffffffff8111156131e9576131e8612be0565b5b6131f587828801613150565b91505092959194509250565b6000806040838503121561321857613217612bdb565b5b600061322685828601612e31565b925050602061323785828601612e31565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061328857607f821691505b60208210810361329b5761329a613241565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132d7602083612cab565b91506132e2826132a1565b602082019050919050565b60006020820190508181036000830152613306816132ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061334782612d5b565b915061335283612d5b565b9250828210156133655761336461330d565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b60006133cc602783612cab565b91506133d782613370565b604082019050919050565b600060208201905081810360008301526133fb816133bf565b9050919050565b600061340d82612d5b565b915061341883612d5b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561344d5761344c61330d565b5b828201905092915050565b7f4d6178206672656520737570706c792063616e6e6f7420657863656564206d6160008201527f7820737570706c792e0000000000000000000000000000000000000000000000602082015250565b60006134b4602983612cab565b91506134bf82613458565b604082019050919050565b600060208201905081810360008301526134e3816134a7565b9050919050565b60006134f582612d5b565b915061350083612d5b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135395761353861330d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061357e82612d5b565b915061358983612d5b565b92508261359957613598613544565b5b828204905092915050565b600081905092915050565b50565b60006135bf6000836135a4565b91506135ca826135af565b600082019050919050565b60006135e0826135b2565b9150819050919050565b7f4445565f41444452455353207472616e73666572206661696c65642e00000000600082015250565b6000613620601c83612cab565b915061362b826135ea565b602082019050919050565b6000602082019050818103600083015261364f81613613565b9050919050565b7f5445414d5f41444452455353207472616e73666572206661696c65642e000000600082015250565b600061368c601d83612cab565b915061369782613656565b602082019050919050565b600060208201905081810360008301526136bb8161367f565b9050919050565b7f43616e6e6f742072657365727665206d6f7265207468616e206d61782073757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b600061371e602383612cab565b9150613729826136c2565b604082019050919050565b6000602082019050818103600083015261374d81613711565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b600061378a601783612cab565b915061379582613754565b602082019050919050565b600060208201905081810360008301526137b98161377d565b9050919050565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b60006137f6601c83612cab565b9150613801826137c0565b602082019050919050565b60006020820190508181036000830152613825816137e9565b9050919050565b7f46616e746173696173576f726c643a2045786365656473206d6178206672656560008201527f20737570706c792e000000000000000000000000000000000000000000000000602082015250565b6000613888602883612cab565b91506138938261382c565b604082019050919050565b600060208201905081810360008301526138b78161387b565b9050919050565b7f46616e746173696173576f726c643a2045786365656473206d6178206672656560008201527f206d696e74732070657220616464726573732100000000000000000000000000602082015250565b600061391a603383612cab565b9150613925826138be565b604082019050919050565b600060208201905081810360008301526139498161390d565b9050919050565b7f496e76616c69642066726565206d696e7420616d6f756e742e00000000000000600082015250565b6000613986601983612cab565b915061399182613950565b602082019050919050565b600060208201905081810360008301526139b581613979565b9050919050565b7f46616e746173696173576f726c643a2045786365656473206d6178207375707060008201527f6c792e0000000000000000000000000000000000000000000000000000000000602082015250565b6000613a18602383612cab565b9150613a23826139bc565b604082019050919050565b60006020820190508181036000830152613a4781613a0b565b9050919050565b7f46616e746173696173576f726c643a2045786365656473206d6178206d696e7460008201527f7320706572206164647265737321000000000000000000000000000000000000602082015250565b6000613aaa602e83612cab565b9150613ab582613a4e565b604082019050919050565b60006020820190508181036000830152613ad981613a9d565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b6000613b16601483612cab565b9150613b2182613ae0565b602082019050919050565b60006020820190508181036000830152613b4581613b09565b9050919050565b600081905092915050565b6000613b6282612ca0565b613b6c8185613b4c565b9350613b7c818560208601612cbc565b80840191505092915050565b6000613b948285613b57565b9150613ba08284613b57565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c08602683612cab565b9150613c1382613bac565b604082019050919050565b60006020820190508181036000830152613c3781613bfb565b9050919050565b7f4e6f7420656e6f756768204554482073656e742e000000000000000000000000600082015250565b6000613c74601483612cab565b9150613c7f82613c3e565b602082019050919050565b60006020820190508181036000830152613ca381613c67565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cd182613caa565b613cdb8185613cb5565b9350613ceb818560208601612cbc565b613cf481612cef565b840191505092915050565b6000608082019050613d146000830187612df0565b613d216020830186612df0565b613d2e6040830185612e86565b8181036060830152613d408184613cc6565b905095945050505050565b600081519050613d5a81612c11565b92915050565b600060208284031215613d7657613d75612bdb565b5b6000613d8484828501613d4b565b9150509291505056fea264697066735822122098a8ebad36cf225b5a385ae7f067089feef0993b8c0912afcd89285e012ebdcc64736f6c634300080d0033

Deployed Bytecode Sourcemap

41837:4723:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16496:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21509:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23577:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23037:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45627:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15550:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24463:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42004:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24704:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41945:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45377:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45867:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46103:454;;;;;;;;;;;;;:::i;:::-;;44330:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21298:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17175:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;;;;;;;;;;;:::i;:::-;;45285:84;;;;;;;;;;;;;:::i;:::-;;45033:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43611:711;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42113:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1955:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44827:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21678:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42581:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42174:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42899:704;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23853:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24960:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45155:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44921:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21853:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42058:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41888:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24232:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42238:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42527:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16496:615;16581:4;16896:10;16881:25;;:11;:25;;;;:102;;;;16973:10;16958:25;;:11;:25;;;;16881:102;:179;;;;17050:10;17035:25;;:11;:25;;;;16881:179;16861:199;;16496:615;;;:::o;21509:100::-;21563:13;21596:5;21589:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21509:100;:::o;23577:204::-;23645:7;23670:16;23678:7;23670;:16::i;:::-;23665:64;;23695:34;;;;;;;;;;;;;;23665:64;23749:15;:24;23765:7;23749:24;;;;;;;;;;;;;;;;;;;;;23742:31;;23577:204;;;:::o;23037:474::-;23110:13;23142:27;23161:7;23142:18;:27::i;:::-;23110:61;;23192:5;23186:11;;:2;:11;;;23182:48;;23206:24;;;;;;;;;;;;;;23182:48;23270:5;23247:28;;:19;:17;:19::i;:::-;:28;;;23243:175;;23295:44;23312:5;23319:19;:17;:19::i;:::-;23295:16;:44::i;:::-;23290:128;;23367:35;;;;;;;;;;;;;;23290:128;23243:175;23457:2;23430:15;:24;23446:7;23430:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23495:7;23491:2;23475:28;;23484:5;23475:28;;;;;;;;;;;;23099:412;23037:474;;:::o;45627:232::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45739:13:::1;:11;:13::i;:::-;45728:7;45716:9;;:19;;;;:::i;:::-;:36;;45694:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;45844:7;45831:9;;:20;;;;;;;:::i;:::-;;;;;;;;45627:232:::0;:::o;15550:315::-;15603:7;15831:15;:13;:15::i;:::-;15816:12;;15800:13;;:28;:46;15793:53;;15550:315;:::o;24463:170::-;24597:28;24607:4;24613:2;24617:7;24597:9;:28::i;:::-;24463:170;;;:::o;42004:47::-;;;;:::o;24704:185::-;24842:39;24859:4;24865:2;24869:7;24842:39;;;;;;;;;;;;:16;:39::i;:::-;24704:185;;;:::o;41945:50::-;;;;:::o;45377:242::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45497:9:::1;;45486:7;45470:13;;:23;;;;:::i;:::-;:36;;45448:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;45604:7;45587:13;;:24;;;;;;;:::i;:::-;;;;;;;;45377:242:::0;:::o;45867:106::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45958:7:::1;;45942:13;:23;;;;;;;:::i;:::-;;45867:106:::0;;:::o;46103:454::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46160:16:::1;46179:21;46160:40;;46214:12;42344:42;46232:25;;46299:5;46291:4;46280:8;:15;;;;:::i;:::-;46279:25;;;;:::i;:::-;46232:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46213:106;;;46338:7;46330:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42439:42;46405:26;;46453:21;46405:84;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46391:98;;;;;46508:7;46500:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;46149:408;;46103:454::o:0;44330:255::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44463:9:::1;44447:13;:11;:13::i;:::-;:25;;;;:::i;:::-;44434:9;;:38;;44412:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;44546:31;44556:9;44567;44546;:31::i;:::-;44330:255:::0;;:::o;21298:144::-;21362:7;21405:27;21424:7;21405:18;:27::i;:::-;21382:52;;21298:144;;;:::o;17175:224::-;17239:7;17280:1;17263:19;;:5;:19;;;17259:60;;17291:28;;;;;;;;;;;;;;17259:60;12514:13;17337:18;:25;17356:5;17337:25;;;;;;;;;;;;;;;;:54;17330:61;;17175:224;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;45285:84::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45349:12:::1;;;;;;;;;;;45348:13;45333:12;;:28;;;;;;;;;;;;;;;;;;45285:84::o:0;45033:114::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45132:7:::1;45106:23;:33;;;;45033:114:::0;:::o;43611:711::-;42756:12;;;;;;;;;;;42748:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42828:10;42815:23;;:9;:23;;;42807:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43740:9:::1;43724:13;:11;:13::i;:::-;:25;;;;:::i;:::-;43707:13;;:42;;43685:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;43829:25;43857:16;:28;43874:10;43857:28;;;;;;;;;;;;;;;;43829:56;;43951:27;;43938:9;43918:17;:29;;;;:::i;:::-;:60;;43896:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;44102:1;44090:9;:13;:57;;;;;44120:27;;44107:9;:40;;44090:57;44068:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;44262:9;44242:17;:29;;;;:::i;:::-;44211:16;:28;44228:10;44211:28;;;;;;;;;;;;;;;:60;;;;44282:32;44292:10;44304:9;44282;:32::i;:::-;43674:648;43611:711:::0;:::o;42113:48::-;;;;:::o;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;44827:86::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44899:6:::1;44891:5;:14;;;;44827:86:::0;:::o;21678:104::-;21734:13;21767:7;21760:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21678:104;:::o;42581:51::-;;;;;;;;;;;;;;;;;:::o;42174:57::-;;;;:::o;42899:704::-;42756:12;;;;;;;;;;;42748:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42828:10;42815:23;;:9;:23;;;42807:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43028:9:::1;43012:13;:11;:13::i;:::-;:25;;;;:::i;:::-;42999:9;;:38;;42977:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;43111:21;43135:12;:24;43148:10;43135:24;;;;;;;;;;;;;;;;43111:48;;43221:23;;43208:9;43192:13;:25;;;;:::i;:::-;:52;;43170:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;43363:1;43351:9;:13;:48;;;;;43381:18;;43368:9;:31;;43351:48;43329:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;43501:9;43485:13;:25;;;;:::i;:::-;43458:12;:24;43471:10;43458:24;;;;;;;;;;;;;;;:52;;;;43521:32;43531:10;43543:9;43521;:32::i;:::-;43564:31;43585:9;43577:5;;:17;;;;:::i;:::-;43564:12;:31::i;:::-;42966:637;42899:704:::0;:::o;23853:308::-;23964:19;:17;:19::i;:::-;23952:31;;:8;:31;;;23948:61;;23992:17;;;;;;;;;;;;;;23948:61;24074:8;24022:18;:39;24041:19;:17;:19::i;:::-;24022:39;;;;;;;;;;;;;;;:49;24062:8;24022:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24134:8;24098:55;;24113:19;:17;:19::i;:::-;24098:55;;;24144:8;24098:55;;;;;;:::i;:::-;;;;;;;;23853:308;;:::o;24960:396::-;25127:28;25137:4;25143:2;25147:7;25127:9;:28::i;:::-;25188:1;25170:2;:14;;;:19;25166:183;;25209:56;25240:4;25246:2;25250:7;25259:5;25209:30;:56::i;:::-;25204:145;;25293:40;;;;;;;;;;;;;;25204:145;25166:183;24960:396;;;;:::o;45155:122::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45262:7:::1;45232:27;:37;;;;45155:122:::0;:::o;44921:104::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45010:7:::1;44989:18;:28;;;;44921:104:::0;:::o;21853:318::-;21926:13;21957:16;21965:7;21957;:16::i;:::-;21952:59;;21982:29;;;;;;;;;;;;;;21952:59;22024:21;22048:10;:8;:10::i;:::-;22024:34;;22101:1;22082:7;22076:21;:26;:87;;;;;;;;;;;;;;;;;22129:7;22138:18;22148:7;22138:9;:18::i;:::-;22112:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22076:87;22069:94;;;21853:318;;;:::o;42058:48::-;;;;:::o;41888:50::-;;;;:::o;24232:164::-;24329:4;24353:18;:25;24372:5;24353:25;;;;;;;;;;;;;;;:35;24379:8;24353:35;;;;;;;;;;;;;;;;;;;;;;;;;24346:42;;24232:164;;;;:::o;42238:51::-;;;;;;;;;;;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;::::0;2945:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;42527:47::-;;;;;;;;;;;;;;;;;:::o;25611:273::-;25668:4;25724:7;25705:15;:13;:15::i;:::-;:26;;:66;;;;;25758:13;;25748:7;:23;25705:66;:152;;;;;25856:1;13284:8;25809:17;:26;25827:7;25809:26;;;;;;;;;;;;:43;:48;25705:152;25685:172;;25611:273;;;:::o;18813:1129::-;18880:7;18900:12;18915:7;18900:22;;18983:4;18964:15;:13;:15::i;:::-;:23;18960:915;;19017:13;;19010:4;:20;19006:869;;;19055:14;19072:17;:23;19090:4;19072:23;;;;;;;;;;;;19055:40;;19188:1;13284:8;19161:6;:23;:28;19157:699;;19680:113;19697:1;19687:6;:11;19680:113;;19740:17;:25;19758:6;;;;;;;19740:25;;;;;;;;;;;;19731:34;;19680:113;;;19826:6;19819:13;;;;;;19157:699;19032:843;19006:869;18960:915;19903:31;;;;;;;;;;;;;;18813:1129;;;;:::o;39593:105::-;39653:7;39680:10;39673:17;;39593:105;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;15073:92::-;15129:7;15073:92;:::o;30850:2515::-;30965:27;30995;31014:7;30995:18;:27::i;:::-;30965:57;;31080:4;31039:45;;31055:19;31039:45;;;31035:86;;31093:28;;;;;;;;;;;;;;31035:86;31134:22;31183:4;31160:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31204:43;31221:4;31227:19;:17;:19::i;:::-;31204:16;:43::i;:::-;31160:87;:147;;;;31288:19;:17;:19::i;:::-;31264:43;;:20;31276:7;31264:11;:20::i;:::-;:43;;;31160:147;31134:174;;31326:17;31321:66;;31352:35;;;;;;;;;;;;;;31321:66;31416:1;31402:16;;:2;:16;;;31398:52;;31427:23;;;;;;;;;;;;;;31398:52;31463:43;31485:4;31491:2;31495:7;31504:1;31463:21;:43::i;:::-;31579:15;:24;31595:7;31579:24;;;;;;;;;;;;31572:31;;;;;;;;;;;31971:18;:24;31990:4;31971:24;;;;;;;;;;;;;;;;31969:26;;;;;;;;;;;;32040:18;:22;32059:2;32040:22;;;;;;;;;;;;;;;;32038:24;;;;;;;;;;;13566:8;13168:3;32421:15;:41;;32379:21;32397:2;32379:17;:21::i;:::-;:84;:128;32333:17;:26;32351:7;32333:26;;;;;;;;;;;:174;;;;32677:1;13566:8;32627:19;:46;:51;32623:626;;32699:19;32731:1;32721:7;:11;32699:33;;32888:1;32854:17;:30;32872:11;32854:30;;;;;;;;;;;;:35;32850:384;;32992:13;;32977:11;:28;32973:242;;33172:19;33139:17;:30;33157:11;33139:30;;;;;;;;;;;:52;;;;32973:242;32850:384;32680:569;32623:626;33296:7;33292:2;33277:27;;33286:4;33277:27;;;;;;;;;;;;33315:42;33336:4;33342:2;33346:7;33355:1;33315:20;:42::i;:::-;30954:2411;;30850:2515;;;:::o;25968:104::-;26037:27;26047:2;26051:8;26037:27;;;;;;;;;;;;:9;:27::i;:::-;25968:104;;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;44593:226::-;44671:6;44658:9;:19;;44650:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;44729:6;44717:9;:18;44713:99;;;44760:10;44752:28;;:48;44793:6;44781:9;:18;;;;:::i;:::-;44752:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44713:99;44593:226;:::o;37062:716::-;37225:4;37271:2;37246:45;;;37292:19;:17;:19::i;:::-;37313:4;37319:7;37328:5;37246:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37242:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37546:1;37529:6;:13;:18;37525:235;;37575:40;;;;;;;;;;;;;;37525:235;37718:6;37712:13;37703:6;37699:2;37695:15;37688:38;37242:529;37415:54;;;37405:64;;;:6;:64;;;;37398:71;;;37062:716;;;;;;:::o;45981:114::-;46041:13;46074;46067:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45981:114;:::o;39804:1959::-;39861:17;40282:3;40275:4;40269:11;40265:21;40258:28;;40373:3;40367:4;40360:17;40479:3;40936:5;41066:1;41061:3;41057:11;41050:18;;41203:2;41197:4;41193:13;41189:2;41185:22;41180:3;41172:36;41244:2;41238:4;41234:13;41226:21;;40827:682;41263:4;40827:682;;;41438:1;41433:3;41429:11;41422:18;;41489:2;41483:4;41479:13;41475:2;41471:22;41466:3;41458:36;41359:2;41353:4;41349:13;41341:21;;40827:682;;;40831:431;41560:3;41555;41551:13;41675:2;41670:3;41666:12;41659:19;;41738:6;41733:3;41726:19;39900:1856;;39804:1959;;;:::o;38426:159::-;;;;;:::o;22598:148::-;22662:14;22723:5;22713:15;;22598:148;;;:::o;39244:158::-;;;;;:::o;26445:2236::-;26568:20;26591:13;;26568:36;;26633:1;26619:16;;:2;:16;;;26615:48;;26644:19;;;;;;;;;;;;;;26615:48;26690:1;26678:8;:13;26674:44;;26700:18;;;;;;;;;;;;;;26674:44;26731:61;26761:1;26765:2;26769:12;26783:8;26731:21;:61::i;:::-;27335:1;12651:2;27306:1;:25;;27305:31;27293:8;:44;27267:18;:22;27286:2;27267:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13431:3;27736:29;27763:1;27751:8;:13;27736:14;:29::i;:::-;:56;;13168:3;27673:15;:41;;27631:21;27649:2;27631:17;:21::i;:::-;:84;:162;27580:17;:31;27598:12;27580:31;;;;;;;;;;;:213;;;;27810:20;27833:12;27810:35;;27860:11;27889:8;27874:12;:23;27860:37;;27936:1;27918:2;:14;;;:19;27914:635;;27958:313;28014:12;28010:2;27989:38;;28006:1;27989:38;;;;;;;;;;;;28055:69;28094:1;28098:2;28102:14;;;;;;28118:5;28055:30;:69::i;:::-;28050:174;;28160:40;;;;;;;;;;;;;;28050:174;28266:3;28251:12;:18;27958:313;;28352:12;28335:13;;:29;28331:43;;28366:8;;;28331:43;27914:635;;;28415:119;28471:14;;;;;;28467:2;28446:40;;28463:1;28446:40;;;;;;;;;;;;28529:3;28514:12;:18;28415:119;;27914:635;28579:12;28563:13;:28;;;;27044:1559;;28613:60;28642:1;28646:2;28650:12;28664:8;28613:20;:60::i;:::-;26557:2124;26445:2236;;;:::o;22833:142::-;22891:14;22952:5;22942:15;;22833:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:182::-;12520:34;12516:1;12508:6;12504:14;12497:58;12380:182;:::o;12568:366::-;12710:3;12731:67;12795:2;12790:3;12731:67;:::i;:::-;12724:74;;12807:93;12896:3;12807:93;:::i;:::-;12925:2;12920:3;12916:12;12909:19;;12568:366;;;:::o;12940:419::-;13106:4;13144:2;13133:9;13129:18;13121:26;;13193:9;13187:4;13183:20;13179:1;13168:9;13164:17;13157:47;13221:131;13347:4;13221:131;:::i;:::-;13213:139;;12940:419;;;:::o;13365:180::-;13413:77;13410:1;13403:88;13510:4;13507:1;13500:15;13534:4;13531:1;13524:15;13551:191;13591:4;13611:20;13629:1;13611:20;:::i;:::-;13606:25;;13645:20;13663:1;13645:20;:::i;:::-;13640:25;;13684:1;13681;13678:8;13675:34;;;13689:18;;:::i;:::-;13675:34;13734:1;13731;13727:9;13719:17;;13551:191;;;;:::o;13748:226::-;13888:34;13884:1;13876:6;13872:14;13865:58;13957:9;13952:2;13944:6;13940:15;13933:34;13748:226;:::o;13980:366::-;14122:3;14143:67;14207:2;14202:3;14143:67;:::i;:::-;14136:74;;14219:93;14308:3;14219:93;:::i;:::-;14337:2;14332:3;14328:12;14321:19;;13980:366;;;:::o;14352:419::-;14518:4;14556:2;14545:9;14541:18;14533:26;;14605:9;14599:4;14595:20;14591:1;14580:9;14576:17;14569:47;14633:131;14759:4;14633:131;:::i;:::-;14625:139;;14352:419;;;:::o;14777:305::-;14817:3;14836:20;14854:1;14836:20;:::i;:::-;14831:25;;14870:20;14888:1;14870:20;:::i;:::-;14865:25;;15024:1;14956:66;14952:74;14949:1;14946:81;14943:107;;;15030:18;;:::i;:::-;14943:107;15074:1;15071;15067:9;15060:16;;14777:305;;;;:::o;15088:228::-;15228:34;15224:1;15216:6;15212:14;15205:58;15297:11;15292:2;15284:6;15280:15;15273:36;15088:228;:::o;15322:366::-;15464:3;15485:67;15549:2;15544:3;15485:67;:::i;:::-;15478:74;;15561:93;15650:3;15561:93;:::i;:::-;15679:2;15674:3;15670:12;15663:19;;15322:366;;;:::o;15694:419::-;15860:4;15898:2;15887:9;15883:18;15875:26;;15947:9;15941:4;15937:20;15933:1;15922:9;15918:17;15911:47;15975:131;16101:4;15975:131;:::i;:::-;15967:139;;15694:419;;;:::o;16119:348::-;16159:7;16182:20;16200:1;16182:20;:::i;:::-;16177:25;;16216:20;16234:1;16216:20;:::i;:::-;16211:25;;16404:1;16336:66;16332:74;16329:1;16326:81;16321:1;16314:9;16307:17;16303:105;16300:131;;;16411:18;;:::i;:::-;16300:131;16459:1;16456;16452:9;16441:20;;16119:348;;;;:::o;16473:180::-;16521:77;16518:1;16511:88;16618:4;16615:1;16608:15;16642:4;16639:1;16632:15;16659:185;16699:1;16716:20;16734:1;16716:20;:::i;:::-;16711:25;;16750:20;16768:1;16750:20;:::i;:::-;16745:25;;16789:1;16779:35;;16794:18;;:::i;:::-;16779:35;16836:1;16833;16829:9;16824:14;;16659:185;;;;:::o;16850:147::-;16951:11;16988:3;16973:18;;16850:147;;;;:::o;17003:114::-;;:::o;17123:398::-;17282:3;17303:83;17384:1;17379:3;17303:83;:::i;:::-;17296:90;;17395:93;17484:3;17395:93;:::i;:::-;17513:1;17508:3;17504:11;17497:18;;17123:398;;;:::o;17527:379::-;17711:3;17733:147;17876:3;17733:147;:::i;:::-;17726:154;;17897:3;17890:10;;17527:379;;;:::o;17912:178::-;18052:30;18048:1;18040:6;18036:14;18029:54;17912:178;:::o;18096:366::-;18238:3;18259:67;18323:2;18318:3;18259:67;:::i;:::-;18252:74;;18335:93;18424:3;18335:93;:::i;:::-;18453:2;18448:3;18444:12;18437:19;;18096:366;;;:::o;18468:419::-;18634:4;18672:2;18661:9;18657:18;18649:26;;18721:9;18715:4;18711:20;18707:1;18696:9;18692:17;18685:47;18749:131;18875:4;18749:131;:::i;:::-;18741:139;;18468:419;;;:::o;18893:179::-;19033:31;19029:1;19021:6;19017:14;19010:55;18893:179;:::o;19078:366::-;19220:3;19241:67;19305:2;19300:3;19241:67;:::i;:::-;19234:74;;19317:93;19406:3;19317:93;:::i;:::-;19435:2;19430:3;19426:12;19419:19;;19078:366;;;:::o;19450:419::-;19616:4;19654:2;19643:9;19639:18;19631:26;;19703:9;19697:4;19693:20;19689:1;19678:9;19674:17;19667:47;19731:131;19857:4;19731:131;:::i;:::-;19723:139;;19450:419;;;:::o;19875:222::-;20015:34;20011:1;20003:6;19999:14;19992:58;20084:5;20079:2;20071:6;20067:15;20060:30;19875:222;:::o;20103:366::-;20245:3;20266:67;20330:2;20325:3;20266:67;:::i;:::-;20259:74;;20342:93;20431:3;20342:93;:::i;:::-;20460:2;20455:3;20451:12;20444:19;;20103:366;;;:::o;20475:419::-;20641:4;20679:2;20668:9;20664:18;20656:26;;20728:9;20722:4;20718:20;20714:1;20703:9;20699:17;20692:47;20756:131;20882:4;20756:131;:::i;:::-;20748:139;;20475:419;;;:::o;20900:173::-;21040:25;21036:1;21028:6;21024:14;21017:49;20900:173;:::o;21079:366::-;21221:3;21242:67;21306:2;21301:3;21242:67;:::i;:::-;21235:74;;21318:93;21407:3;21318:93;:::i;:::-;21436:2;21431:3;21427:12;21420:19;;21079:366;;;:::o;21451:419::-;21617:4;21655:2;21644:9;21640:18;21632:26;;21704:9;21698:4;21694:20;21690:1;21679:9;21675:17;21668:47;21732:131;21858:4;21732:131;:::i;:::-;21724:139;;21451:419;;;:::o;21876:178::-;22016:30;22012:1;22004:6;22000:14;21993:54;21876:178;:::o;22060:366::-;22202:3;22223:67;22287:2;22282:3;22223:67;:::i;:::-;22216:74;;22299:93;22388:3;22299:93;:::i;:::-;22417:2;22412:3;22408:12;22401:19;;22060:366;;;:::o;22432:419::-;22598:4;22636:2;22625:9;22621:18;22613:26;;22685:9;22679:4;22675:20;22671:1;22660:9;22656:17;22649:47;22713:131;22839:4;22713:131;:::i;:::-;22705:139;;22432:419;;;:::o;22857:227::-;22997:34;22993:1;22985:6;22981:14;22974:58;23066:10;23061:2;23053:6;23049:15;23042:35;22857:227;:::o;23090:366::-;23232:3;23253:67;23317:2;23312:3;23253:67;:::i;:::-;23246:74;;23329:93;23418:3;23329:93;:::i;:::-;23447:2;23442:3;23438:12;23431:19;;23090:366;;;:::o;23462:419::-;23628:4;23666:2;23655:9;23651:18;23643:26;;23715:9;23709:4;23705:20;23701:1;23690:9;23686:17;23679:47;23743:131;23869:4;23743:131;:::i;:::-;23735:139;;23462:419;;;:::o;23887:238::-;24027:34;24023:1;24015:6;24011:14;24004:58;24096:21;24091:2;24083:6;24079:15;24072:46;23887:238;:::o;24131:366::-;24273:3;24294:67;24358:2;24353:3;24294:67;:::i;:::-;24287:74;;24370:93;24459:3;24370:93;:::i;:::-;24488:2;24483:3;24479:12;24472:19;;24131:366;;;:::o;24503:419::-;24669:4;24707:2;24696:9;24692:18;24684:26;;24756:9;24750:4;24746:20;24742:1;24731:9;24727:17;24720:47;24784:131;24910:4;24784:131;:::i;:::-;24776:139;;24503:419;;;:::o;24928:175::-;25068:27;25064:1;25056:6;25052:14;25045:51;24928:175;:::o;25109:366::-;25251:3;25272:67;25336:2;25331:3;25272:67;:::i;:::-;25265:74;;25348:93;25437:3;25348:93;:::i;:::-;25466:2;25461:3;25457:12;25450:19;;25109:366;;;:::o;25481:419::-;25647:4;25685:2;25674:9;25670:18;25662:26;;25734:9;25728:4;25724:20;25720:1;25709:9;25705:17;25698:47;25762:131;25888:4;25762:131;:::i;:::-;25754:139;;25481:419;;;:::o;25906:222::-;26046:34;26042:1;26034:6;26030:14;26023:58;26115:5;26110:2;26102:6;26098:15;26091:30;25906:222;:::o;26134:366::-;26276:3;26297:67;26361:2;26356:3;26297:67;:::i;:::-;26290:74;;26373:93;26462:3;26373:93;:::i;:::-;26491:2;26486:3;26482:12;26475:19;;26134:366;;;:::o;26506:419::-;26672:4;26710:2;26699:9;26695:18;26687:26;;26759:9;26753:4;26749:20;26745:1;26734:9;26730:17;26723:47;26787:131;26913:4;26787:131;:::i;:::-;26779:139;;26506:419;;;:::o;26931:233::-;27071:34;27067:1;27059:6;27055:14;27048:58;27140:16;27135:2;27127:6;27123:15;27116:41;26931:233;:::o;27170:366::-;27312:3;27333:67;27397:2;27392:3;27333:67;:::i;:::-;27326:74;;27409:93;27498:3;27409:93;:::i;:::-;27527:2;27522:3;27518:12;27511:19;;27170:366;;;:::o;27542:419::-;27708:4;27746:2;27735:9;27731:18;27723:26;;27795:9;27789:4;27785:20;27781:1;27770:9;27766:17;27759:47;27823:131;27949:4;27823:131;:::i;:::-;27815:139;;27542:419;;;:::o;27967:170::-;28107:22;28103:1;28095:6;28091:14;28084:46;27967:170;:::o;28143:366::-;28285:3;28306:67;28370:2;28365:3;28306:67;:::i;:::-;28299:74;;28382:93;28471:3;28382:93;:::i;:::-;28500:2;28495:3;28491:12;28484:19;;28143:366;;;:::o;28515:419::-;28681:4;28719:2;28708:9;28704:18;28696:26;;28768:9;28762:4;28758:20;28754:1;28743:9;28739:17;28732:47;28796:131;28922:4;28796:131;:::i;:::-;28788:139;;28515:419;;;:::o;28940:148::-;29042:11;29079:3;29064:18;;28940:148;;;;:::o;29094:377::-;29200:3;29228:39;29261:5;29228:39;:::i;:::-;29283:89;29365:6;29360:3;29283:89;:::i;:::-;29276:96;;29381:52;29426:6;29421:3;29414:4;29407:5;29403:16;29381:52;:::i;:::-;29458:6;29453:3;29449:16;29442:23;;29204:267;29094:377;;;;:::o;29477:435::-;29657:3;29679:95;29770:3;29761:6;29679:95;:::i;:::-;29672:102;;29791:95;29882:3;29873:6;29791:95;:::i;:::-;29784:102;;29903:3;29896:10;;29477:435;;;;;:::o;29918:225::-;30058:34;30054:1;30046:6;30042:14;30035:58;30127:8;30122:2;30114:6;30110:15;30103:33;29918:225;:::o;30149:366::-;30291:3;30312:67;30376:2;30371:3;30312:67;:::i;:::-;30305:74;;30388:93;30477:3;30388:93;:::i;:::-;30506:2;30501:3;30497:12;30490:19;;30149:366;;;:::o;30521:419::-;30687:4;30725:2;30714:9;30710:18;30702:26;;30774:9;30768:4;30764:20;30760:1;30749:9;30745:17;30738:47;30802:131;30928:4;30802:131;:::i;:::-;30794:139;;30521:419;;;:::o;30946:170::-;31086:22;31082:1;31074:6;31070:14;31063:46;30946:170;:::o;31122:366::-;31264:3;31285:67;31349:2;31344:3;31285:67;:::i;:::-;31278:74;;31361:93;31450:3;31361:93;:::i;:::-;31479:2;31474:3;31470:12;31463:19;;31122:366;;;:::o;31494:419::-;31660:4;31698:2;31687:9;31683:18;31675:26;;31747:9;31741:4;31737:20;31733:1;31722:9;31718:17;31711:47;31775:131;31901:4;31775:131;:::i;:::-;31767:139;;31494:419;;;:::o;31919:98::-;31970:6;32004:5;31998:12;31988:22;;31919:98;;;:::o;32023:168::-;32106:11;32140:6;32135:3;32128:19;32180:4;32175:3;32171:14;32156:29;;32023:168;;;;:::o;32197:360::-;32283:3;32311:38;32343:5;32311:38;:::i;:::-;32365:70;32428:6;32423:3;32365:70;:::i;:::-;32358:77;;32444:52;32489:6;32484:3;32477:4;32470:5;32466:16;32444:52;:::i;:::-;32521:29;32543:6;32521:29;:::i;:::-;32516:3;32512:39;32505:46;;32287:270;32197:360;;;;:::o;32563:640::-;32758:4;32796:3;32785:9;32781:19;32773:27;;32810:71;32878:1;32867:9;32863:17;32854:6;32810:71;:::i;:::-;32891:72;32959:2;32948:9;32944:18;32935:6;32891:72;:::i;:::-;32973;33041:2;33030:9;33026:18;33017:6;32973:72;:::i;:::-;33092:9;33086:4;33082:20;33077:2;33066:9;33062:18;33055:48;33120:76;33191:4;33182:6;33120:76;:::i;:::-;33112:84;;32563:640;;;;;;;:::o;33209:141::-;33265:5;33296:6;33290:13;33281:22;;33312:32;33338:5;33312:32;:::i;:::-;33209:141;;;;:::o;33356:349::-;33425:6;33474:2;33462:9;33453:7;33449:23;33445:32;33442:119;;;33480:79;;:::i;:::-;33442:119;33600:1;33625:63;33680:7;33671:6;33660:9;33656:22;33625:63;:::i;:::-;33615:73;;33571:127;33356:349;;;;:::o

Swarm Source

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