ETH Price: $3,359.57 (-2.75%)
Gas: 2 Gwei

Token

Darkflex (DARKFLEX)
 

Overview

Max Total Supply

6,666 DARKFLEX

Holders

1,466

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DARKFLEX
0x87ac7f2282d420ebab6ba77bf3db22847ad9de08
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Proof of existence.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Darkflex

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 2023-01-20
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}


// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/OperatorFilterer.sol

pragma solidity ^0.8.13;

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}


// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/DefaultOperatorFilterer.sol

pragma solidity ^0.8.13;

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);
    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}


pragma solidity ^0.8.13;

// File: erc721a/contracts/IERC721A.sol

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: erc721a/contracts/ERC721A.sol

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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


pragma solidity ^0.8.13;

contract Darkflex is ERC721A, Ownable, DefaultOperatorFilterer, ReentrancyGuard {
    
    uint256 public maxSupply = 6666;
    uint256 public maxSupplyForPublic = 6295;
    uint256 public maxPerWallet = 20;
    uint256 public mintCost = 0.009 ether;

    bool public isSalesActive = false;
    bool public isReveal = false;

    string public baseURI;
    string public hiddenURI;

    address public wallet1 = 0x89FD37Ac832d04FC3f4DDafB2Bf3063f05E7cF9f;
    address public wallet2 = 0xF1CC1Cb4f4A29AF933B839cDbfb52f0C68D8cA1b;

    mapping(address => uint256) addressToMinted;

    constructor () ERC721A("Darkflex", "DARKFLEX") {
        _safeMint(msg.sender, 2);
        setHiddenURI("ipfs://bafkreidnukohre5dozxrjvr43adh4hw3txozsyoexfnk4rofmpnmnzhv7i");
    }

    function mint(uint256 mintAmount) public payable nonReentrant {
        require(msg.value >= mintAmount * mintCost, "Wrong mint amount");
        require(isSalesActive, "Wait, sale is not active yet");
        require(addressToMinted[msg.sender] + mintAmount <= maxPerWallet, "You can't mint more than limit");
        require(totalSupply() + mintAmount <= maxSupplyForPublic, "Sold out");
        
        addressToMinted[msg.sender] += mintAmount;
        _safeMint(msg.sender, mintAmount);
    }

    function reserveTeam(uint256 _mintAmount) public onlyOwner {
        require(totalSupply() + _mintAmount <= maxSupply, "Sold Out");
        
        _safeMint(msg.sender, _mintAmount);
    }

    function airdrop(address[] memory _addresses) public onlyOwner {
        require(totalSupply() + _addresses.length <= maxSupply, "Sold Out");

        for (uint256 i = 0; i < _addresses.length; i++) {
            _safeMint(_addresses[i], 1);
        }
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {

        if (isReveal == false) {
            return hiddenURI;
        }

        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, _toString(tokenId), ""));
    }

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

    function setHiddenURI(string memory _hiddenURI) public onlyOwner
    {
        hiddenURI = _hiddenURI;
    }

    function toggleReveal() public onlyOwner {
        isReveal = !isReveal;
    }

    function toggleSale() external onlyOwner {
        isSalesActive = !isSalesActive;
    }

    function setCost(uint256 newCost) external onlyOwner {
        mintCost = newCost;
    }

    function setMaxMint(uint256 newMaxMint) external onlyOwner {
        maxPerWallet = newMaxMint;
    }

    function withdrawAll() external onlyOwner {
        uint256 percent1 = address(this).balance * 15 / 100;
        uint256 percent2 = address(this).balance * 85 / 100;
        require(percent1 > 0);
        _withdraw(wallet1, percent1);
        _withdraw(wallet2, percent2);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSalesActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyForPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"reserveTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenURI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611a0a600a55611897600b556014600c55661ff973cafa8000600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055507389fd37ac832d04fc3f4ddafb2bf3063f05e7cf9f601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f1cc1cb4f4a29af933b839cdbfb52f0c68d8ca1b601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010d57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f4461726b666c65780000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4441524b464c45580000000000000000000000000000000000000000000000008152508160029080519060200190620001a992919062000a9e565b508060039080519060200190620001c292919062000a9e565b50620001d36200043d60201b60201c565b6000819055505050620001fb620001ef6200044260201b60201c565b6200044a60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003f0578015620002b6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200027c92919062000b93565b600060405180830381600087803b1580156200029757600080fd5b505af1158015620002ac573d6000803e3d6000fd5b50505050620003ef565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000370576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200033692919062000b93565b600060405180830381600087803b1580156200035157600080fd5b505af115801562000366573d6000803e3d6000fd5b50505050620003ee565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003b9919062000bc0565b600060405180830381600087803b158015620003d457600080fd5b505af1158015620003e9573d6000803e3d6000fd5b505050505b5b5b505060016009819055506200040d3360026200051060201b60201c565b620004376040518060800160405280604281526020016200498f604291396200053660201b60201c565b62000e6b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005328282604051806020016040528060008152506200056260201b60201c565b5050565b620005466200061360201b60201c565b80601090805190602001906200055e92919062000a9e565b5050565b620005748383620006a460201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200060e57600080549050600083820390505b620005bd60008683806001019450866200088b60201b60201c565b620005f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620005a25781600054146200060b57600080fd5b50505b505050565b620006236200044260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000649620009ec60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006999062000c3e565b60405180910390fd5b565b60008054905060008203620006e5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620006fa600084838562000a1660201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555062000789836200076b600086600062000a1c60201b60201c565b6200077c8562000a4c60201b60201c565b1762000a5c60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200082c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620007ef565b506000820362000868576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505062000886600084838562000a8760201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620008b962000a8d60201b60201c565b8786866040518563ffffffff1660e01b8152600401620008dd949392919062000d1f565b6020604051808303816000875af19250505080156200091c57506040513d601f19601f8201168201806040525081019062000919919062000dd5565b60015b62000999573d80600081146200094f576040519150601f19603f3d011682016040523d82523d6000602084013e62000954565b606091505b50600081510362000991576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b50505050565b60008060e883901c905060e862000a3b86868462000a9560201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b82805462000aac9062000e36565b90600052602060002090601f01602090048101928262000ad0576000855562000b1c565b82601f1062000aeb57805160ff191683800117855562000b1c565b8280016001018555821562000b1c579182015b8281111562000b1b57825182559160200191906001019062000afe565b5b50905062000b2b919062000b2f565b5090565b5b8082111562000b4a57600081600090555060010162000b30565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b7b8262000b4e565b9050919050565b62000b8d8162000b6e565b82525050565b600060408201905062000baa600083018562000b82565b62000bb9602083018462000b82565b9392505050565b600060208201905062000bd7600083018462000b82565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c2660208362000bdd565b915062000c338262000bee565b602082019050919050565b6000602082019050818103600083015262000c598162000c17565b9050919050565b6000819050919050565b62000c758162000c60565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000cb757808201518184015260208101905062000c9a565b8381111562000cc7576000848401525b50505050565b6000601f19601f8301169050919050565b600062000ceb8262000c7b565b62000cf7818562000c86565b935062000d0981856020860162000c97565b62000d148162000ccd565b840191505092915050565b600060808201905062000d36600083018762000b82565b62000d45602083018662000b82565b62000d54604083018562000c6a565b818103606083015262000d68818462000cde565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000daf8162000d78565b811462000dbb57600080fd5b50565b60008151905062000dcf8162000da4565b92915050565b60006020828403121562000dee5762000ded62000d73565b5b600062000dfe8482850162000dbe565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e4f57607f821691505b60208210810362000e655762000e6462000e07565b5b50919050565b613b148062000e7b6000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610766578063daa81cdd14610791578063e985e9c5146107bc578063f2fde38b146107f9578063fae4c7f91461082257610225565b8063a22cb46514610690578063b88d4fde146106b9578063bbaac02f146106d5578063bdb4b848146106fe578063c87b56dd1461072957610225565b8063853828b6116100f2578063853828b6146105dc5780638cc54e7f146105f35780638da5cb5b1461061e57806395d89b4114610649578063a0712d681461067457610225565b806370a0823114610548578063715018a614610585578063729ad39e1461059c5780637d8966e4146105c557610225565b806341f43434116101b1578063547520fe11610175578063547520fe1461047757806355f804b3146104a05780635b8ad429146104c95780636352211e146104e05780636c0360eb1461051d57610225565b806341f43434146103b157806342842e0e146103dc57806344a0d68a146103f8578063453c2310146104215780634921297b1461044c57610225565b80630b8d0a28116101f85780630b8d0a28146102eb578063163c03511461031657806318160ddd1461033f5780631a026c961461036a57806323b872dd1461039557610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906129c2565b61084d565b60405161025e9190612a0a565b60405180910390f35b34801561027357600080fd5b5061027c6108df565b6040516102899190612abe565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612b16565b610971565b6040516102c69190612b84565b60405180910390f35b6102e960048036038101906102e49190612bcb565b6109f0565b005b3480156102f757600080fd5b50610300610afa565b60405161030d9190612b84565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612b16565b610b20565b005b34801561034b57600080fd5b50610354610b8c565b6040516103619190612c1a565b60405180910390f35b34801561037657600080fd5b5061037f610ba3565b60405161038c9190612b84565b60405180910390f35b6103af60048036038101906103aa9190612c35565b610bc9565b005b3480156103bd57600080fd5b506103c6610d19565b6040516103d39190612ce7565b60405180910390f35b6103f660048036038101906103f19190612c35565b610d2b565b005b34801561040457600080fd5b5061041f600480360381019061041a9190612b16565b610e7b565b005b34801561042d57600080fd5b50610436610e8d565b6040516104439190612c1a565b60405180910390f35b34801561045857600080fd5b50610461610e93565b60405161046e9190612c1a565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190612b16565b610e99565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190612e37565b610eab565b005b3480156104d557600080fd5b506104de610ecd565b005b3480156104ec57600080fd5b5061050760048036038101906105029190612b16565b610f01565b6040516105149190612b84565b60405180910390f35b34801561052957600080fd5b50610532610f13565b60405161053f9190612abe565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612e80565b610fa1565b60405161057c9190612c1a565b60405180910390f35b34801561059157600080fd5b5061059a611059565b005b3480156105a857600080fd5b506105c360048036038101906105be9190612f75565b61106d565b005b3480156105d157600080fd5b506105da611115565b005b3480156105e857600080fd5b506105f1611149565b005b3480156105ff57600080fd5b506106086111f4565b6040516106159190612abe565b60405180910390f35b34801561062a57600080fd5b50610633611282565b6040516106409190612b84565b60405180910390f35b34801561065557600080fd5b5061065e6112ac565b60405161066b9190612abe565b60405180910390f35b61068e60048036038101906106899190612b16565b61133e565b005b34801561069c57600080fd5b506106b760048036038101906106b29190612fea565b611536565b005b6106d360048036038101906106ce91906130cb565b611640565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190612e37565b611793565b005b34801561070a57600080fd5b506107136117b5565b6040516107209190612c1a565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612b16565b6117bb565b60405161075d9190612abe565b60405180910390f35b34801561077257600080fd5b5061077b6118e5565b6040516107889190612c1a565b60405180910390f35b34801561079d57600080fd5b506107a66118eb565b6040516107b39190612a0a565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de919061314e565b6118fe565b6040516107f09190612a0a565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612e80565b611992565b005b34801561082e57600080fd5b50610837611a15565b6040516108449190612a0a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ee906131bd565b80601f016020809104026020016040519081016040528092919081815260200182805461091a906131bd565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b600061097c82611a28565b6109b2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aeb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610a689291906131ee565b602060405180830381865afa158015610a85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa9919061322c565b610aea57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ae19190612b84565b60405180910390fd5b5b610af58383611a87565b505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b28611bcb565b600a5481610b34610b8c565b610b3e9190613288565b1115610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b769061332a565b60405180910390fd5b610b893382611c49565b50565b6000610b96611c67565b6001546000540303905090565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d07573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c3b57610c36848484611c6c565b610d13565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c849291906131ee565b602060405180830381865afa158015610ca1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc5919061322c565b610d0657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610cfd9190612b84565b60405180910390fd5b5b610d12848484611c6c565b5b50505050565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e69573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9d57610d98848484611f8e565b610e75565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610de69291906131ee565b602060405180830381865afa158015610e03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e27919061322c565b610e6857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e5f9190612b84565b60405180910390fd5b5b610e74848484611f8e565b5b50505050565b610e83611bcb565b80600d8190555050565b600c5481565b600b5481565b610ea1611bcb565b80600c8190555050565b610eb3611bcb565b80600f9080519060200190610ec99291906128b3565b5050565b610ed5611bcb565b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b6000610f0c82611fae565b9050919050565b600f8054610f20906131bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4c906131bd565b8015610f995780601f10610f6e57610100808354040283529160200191610f99565b820191906000526020600020905b815481529060010190602001808311610f7c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611008576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611061611bcb565b61106b600061207a565b565b611075611bcb565b600a548151611082610b8c565b61108c9190613288565b11156110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c49061332a565b60405180910390fd5b60005b8151811015611111576110fe8282815181106110ef576110ee61334a565b5b60200260200101516001611c49565b808061110990613379565b9150506110d0565b5050565b61111d611bcb565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611151611bcb565b60006064600f4761116291906133c1565b61116c919061344a565b90506000606460554761117f91906133c1565b611189919061344a565b90506000821161119857600080fd5b6111c4601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612140565b6111f0601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612140565b5050565b60108054611201906131bd565b80601f016020809104026020016040519081016040528092919081815260200182805461122d906131bd565b801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112bb906131bd565b80601f01602080910402602001604051908101604052809291908181526020018280546112e7906131bd565b80156113345780601f1061130957610100808354040283529160200191611334565b820191906000526020600020905b81548152906001019060200180831161131757829003601f168201915b5050505050905090565b6113466121f1565b600d548161135491906133c1565b341015611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d906134c7565b60405180910390fd5b600e60009054906101000a900460ff166113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90613533565b60405180910390fd5b600c5481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114339190613288565b1115611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b9061359f565b60405180910390fd5b600b5481611480610b8c565b61148a9190613288565b11156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c29061360b565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151a9190613288565b9250508190555061152b3382611c49565b611533612240565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611631576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016115ae9291906131ee565b602060405180830381865afa1580156115cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ef919061322c565b61163057806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016116279190612b84565b60405180910390fd5b5b61163b838361224a565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561177f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116b3576116ae85858585612355565b61178c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016116fc9291906131ee565b602060405180830381865afa158015611719573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173d919061322c565b61177e57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117759190612b84565b60405180910390fd5b5b61178b85858585612355565b5b5050505050565b61179b611bcb565b80601090805190602001906117b19291906128b3565b5050565b600d5481565b606060001515600e60019054906101000a900460ff1615150361186a57601080546117e5906131bd565b80601f0160208091040260200160405190810160405280929190818152602001828054611811906131bd565b801561185e5780601f106118335761010080835404028352916020019161185e565b820191906000526020600020905b81548152906001019060200180831161184157829003601f168201915b505050505090506118e0565b61187382611a28565b6118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a99061369d565b60405180910390fd5b600f6118bd836123c8565b6040516020016118ce9291906137b3565b60405160208183030381529060405290505b919050565b600a5481565b600e60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61199a611bcb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090613854565b60405180910390fd5b611a128161207a565b50565b600e60019054906101000a900460ff1681565b600081611a33611c67565b11158015611a42575060005482105b8015611a80575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000611a9282610f01565b90508073ffffffffffffffffffffffffffffffffffffffff16611ab3612418565b73ffffffffffffffffffffffffffffffffffffffff1614611b1657611adf81611ada612418565b6118fe565b611b15576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611bd3612420565b73ffffffffffffffffffffffffffffffffffffffff16611bf1611282565b73ffffffffffffffffffffffffffffffffffffffff1614611c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3e906138c0565b60405180910390fd5b565b611c63828260405180602001604052806000815250612428565b5050565b600090565b6000611c7782611fae565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611cde576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611cea846124c5565b91509150611d008187611cfb612418565b6124ec565b611d4c57611d1586611d10612418565b6118fe565b611d4b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611db2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dbf8686866001612530565b8015611dca57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e9885611e74888887612536565b7c02000000000000000000000000000000000000000000000000000000001761255e565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611f1e5760006001850190506000600460008381526020019081526020016000205403611f1c576000548114611f1b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f868686866001612589565b505050505050565b611fa983838360405180602001604052806000815250611640565b505050565b60008082905080611fbd611c67565b11612043576000548110156120425760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612040575b6000810361203657600460008360019003935083815260200190815260200160002054905061200c565b8092505050612075565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121669061390e565b60006040518083038185875af1925050503d80600081146121a3576040519150601f19603f3d011682016040523d82523d6000602084013e6121a8565b606091505b50509050806121ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e39061396f565b60405180910390fd5b505050565b600260095403612236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222d906139db565b60405180910390fd5b6002600981905550565b6001600981905550565b8060076000612257612418565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612304612418565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123499190612a0a565b60405180910390a35050565b612360848484610bc9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123c25761238b8484848461258f565b6123c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b60011561240357600184039350600a81066030018453600a81049050806123e1575b50828103602084039350808452505050919050565b600033905090565b600033905090565b61243283836126df565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124c057600080549050600083820390505b612472600086838060010194508661258f565b6124a8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061245f5781600054146124bd57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861254d86868461289a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125b5612418565b8786866040518563ffffffff1660e01b81526004016125d79493929190613a50565b6020604051808303816000875af192505050801561261357506040513d601f19601f820116820180604052508101906126109190613ab1565b60015b61268c573d8060008114612643576040519150601f19603f3d011682016040523d82523d6000602084013e612648565b606091505b506000815103612684576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000820361271f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61272c6000848385612530565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127a3836127946000866000612536565b61279d856128a3565b1761255e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461284457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612809565b506000820361287f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128956000848385612589565b505050565b60009392505050565b60006001821460e11b9050919050565b8280546128bf906131bd565b90600052602060002090601f0160209004810192826128e15760008555612928565b82601f106128fa57805160ff1916838001178555612928565b82800160010185558215612928579182015b8281111561292757825182559160200191906001019061290c565b5b5090506129359190612939565b5090565b5b8082111561295257600081600090555060010161293a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61299f8161296a565b81146129aa57600080fd5b50565b6000813590506129bc81612996565b92915050565b6000602082840312156129d8576129d7612960565b5b60006129e6848285016129ad565b91505092915050565b60008115159050919050565b612a04816129ef565b82525050565b6000602082019050612a1f60008301846129fb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a5f578082015181840152602081019050612a44565b83811115612a6e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a9082612a25565b612a9a8185612a30565b9350612aaa818560208601612a41565b612ab381612a74565b840191505092915050565b60006020820190508181036000830152612ad88184612a85565b905092915050565b6000819050919050565b612af381612ae0565b8114612afe57600080fd5b50565b600081359050612b1081612aea565b92915050565b600060208284031215612b2c57612b2b612960565b5b6000612b3a84828501612b01565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b6e82612b43565b9050919050565b612b7e81612b63565b82525050565b6000602082019050612b996000830184612b75565b92915050565b612ba881612b63565b8114612bb357600080fd5b50565b600081359050612bc581612b9f565b92915050565b60008060408385031215612be257612be1612960565b5b6000612bf085828601612bb6565b9250506020612c0185828601612b01565b9150509250929050565b612c1481612ae0565b82525050565b6000602082019050612c2f6000830184612c0b565b92915050565b600080600060608486031215612c4e57612c4d612960565b5b6000612c5c86828701612bb6565b9350506020612c6d86828701612bb6565b9250506040612c7e86828701612b01565b9150509250925092565b6000819050919050565b6000612cad612ca8612ca384612b43565b612c88565b612b43565b9050919050565b6000612cbf82612c92565b9050919050565b6000612cd182612cb4565b9050919050565b612ce181612cc6565b82525050565b6000602082019050612cfc6000830184612cd8565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d4482612a74565b810181811067ffffffffffffffff82111715612d6357612d62612d0c565b5b80604052505050565b6000612d76612956565b9050612d828282612d3b565b919050565b600067ffffffffffffffff821115612da257612da1612d0c565b5b612dab82612a74565b9050602081019050919050565b82818337600083830152505050565b6000612dda612dd584612d87565b612d6c565b905082815260208101848484011115612df657612df5612d07565b5b612e01848285612db8565b509392505050565b600082601f830112612e1e57612e1d612d02565b5b8135612e2e848260208601612dc7565b91505092915050565b600060208284031215612e4d57612e4c612960565b5b600082013567ffffffffffffffff811115612e6b57612e6a612965565b5b612e7784828501612e09565b91505092915050565b600060208284031215612e9657612e95612960565b5b6000612ea484828501612bb6565b91505092915050565b600067ffffffffffffffff821115612ec857612ec7612d0c565b5b602082029050602081019050919050565b600080fd5b6000612ef1612eec84612ead565b612d6c565b90508083825260208201905060208402830185811115612f1457612f13612ed9565b5b835b81811015612f3d5780612f298882612bb6565b845260208401935050602081019050612f16565b5050509392505050565b600082601f830112612f5c57612f5b612d02565b5b8135612f6c848260208601612ede565b91505092915050565b600060208284031215612f8b57612f8a612960565b5b600082013567ffffffffffffffff811115612fa957612fa8612965565b5b612fb584828501612f47565b91505092915050565b612fc7816129ef565b8114612fd257600080fd5b50565b600081359050612fe481612fbe565b92915050565b6000806040838503121561300157613000612960565b5b600061300f85828601612bb6565b925050602061302085828601612fd5565b9150509250929050565b600067ffffffffffffffff82111561304557613044612d0c565b5b61304e82612a74565b9050602081019050919050565b600061306e6130698461302a565b612d6c565b90508281526020810184848401111561308a57613089612d07565b5b613095848285612db8565b509392505050565b600082601f8301126130b2576130b1612d02565b5b81356130c284826020860161305b565b91505092915050565b600080600080608085870312156130e5576130e4612960565b5b60006130f387828801612bb6565b945050602061310487828801612bb6565b935050604061311587828801612b01565b925050606085013567ffffffffffffffff81111561313657613135612965565b5b6131428782880161309d565b91505092959194509250565b6000806040838503121561316557613164612960565b5b600061317385828601612bb6565b925050602061318485828601612bb6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131d557607f821691505b6020821081036131e8576131e761318e565b5b50919050565b60006040820190506132036000830185612b75565b6132106020830184612b75565b9392505050565b60008151905061322681612fbe565b92915050565b60006020828403121561324257613241612960565b5b600061325084828501613217565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061329382612ae0565b915061329e83612ae0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132d3576132d2613259565b5b828201905092915050565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b6000613314600883612a30565b915061331f826132de565b602082019050919050565b6000602082019050818103600083015261334381613307565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061338482612ae0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036133b6576133b5613259565b5b600182019050919050565b60006133cc82612ae0565b91506133d783612ae0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134105761340f613259565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061345582612ae0565b915061346083612ae0565b9250826134705761346f61341b565b5b828204905092915050565b7f57726f6e67206d696e7420616d6f756e74000000000000000000000000000000600082015250565b60006134b1601183612a30565b91506134bc8261347b565b602082019050919050565b600060208201905081810360008301526134e0816134a4565b9050919050565b7f576169742c2073616c65206973206e6f74206163746976652079657400000000600082015250565b600061351d601c83612a30565b9150613528826134e7565b602082019050919050565b6000602082019050818103600083015261354c81613510565b9050919050565b7f596f752063616e2774206d696e74206d6f7265207468616e206c696d69740000600082015250565b6000613589601e83612a30565b915061359482613553565b602082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b60006135f5600883612a30565b9150613600826135bf565b602082019050919050565b60006020820190508181036000830152613624816135e8565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613687602f83612a30565b91506136928261362b565b604082019050919050565b600060208201905081810360008301526136b68161367a565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546136ea816131bd565b6136f481866136bd565b9450600182166000811461370f576001811461372057613753565b60ff19831686528186019350613753565b613729856136c8565b60005b8381101561374b5781548189015260018201915060208101905061372c565b838801955050505b50505092915050565b600061376782612a25565b61377181856136bd565b9350613781818560208601612a41565b80840191505092915050565b50565b600061379d6000836136bd565b91506137a88261378d565b600082019050919050565b60006137bf82856136dd565b91506137cb828461375c565b91506137d682613790565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061383e602683612a30565b9150613849826137e2565b604082019050919050565b6000602082019050818103600083015261386d81613831565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138aa602083612a30565b91506138b582613874565b602082019050919050565b600060208201905081810360008301526138d98161389d565b9050919050565b600081905092915050565b60006138f86000836138e0565b91506139038261378d565b600082019050919050565b6000613919826138eb565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613959601083612a30565b915061396482613923565b602082019050919050565b600060208201905081810360008301526139888161394c565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006139c5601f83612a30565b91506139d08261398f565b602082019050919050565b600060208201905081810360008301526139f4816139b8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a22826139fb565b613a2c8185613a06565b9350613a3c818560208601612a41565b613a4581612a74565b840191505092915050565b6000608082019050613a656000830187612b75565b613a726020830186612b75565b613a7f6040830185612c0b565b8181036060830152613a918184613a17565b905095945050505050565b600081519050613aab81612996565b92915050565b600060208284031215613ac757613ac6612960565b5b6000613ad584828501613a9c565b9150509291505056fea2646970667358221220ee508c1a9090021d9c3bbc11fd7b101a4f157fbdda1af389e667b988675606a264736f6c634300080d0033697066733a2f2f6261666b726569646e756b6f68726535646f7a78726a767234336164683468773374786f7a73796f6578666e6b34726f666d706e6d6e7a68763769

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610766578063daa81cdd14610791578063e985e9c5146107bc578063f2fde38b146107f9578063fae4c7f91461082257610225565b8063a22cb46514610690578063b88d4fde146106b9578063bbaac02f146106d5578063bdb4b848146106fe578063c87b56dd1461072957610225565b8063853828b6116100f2578063853828b6146105dc5780638cc54e7f146105f35780638da5cb5b1461061e57806395d89b4114610649578063a0712d681461067457610225565b806370a0823114610548578063715018a614610585578063729ad39e1461059c5780637d8966e4146105c557610225565b806341f43434116101b1578063547520fe11610175578063547520fe1461047757806355f804b3146104a05780635b8ad429146104c95780636352211e146104e05780636c0360eb1461051d57610225565b806341f43434146103b157806342842e0e146103dc57806344a0d68a146103f8578063453c2310146104215780634921297b1461044c57610225565b80630b8d0a28116101f85780630b8d0a28146102eb578063163c03511461031657806318160ddd1461033f5780631a026c961461036a57806323b872dd1461039557610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906129c2565b61084d565b60405161025e9190612a0a565b60405180910390f35b34801561027357600080fd5b5061027c6108df565b6040516102899190612abe565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612b16565b610971565b6040516102c69190612b84565b60405180910390f35b6102e960048036038101906102e49190612bcb565b6109f0565b005b3480156102f757600080fd5b50610300610afa565b60405161030d9190612b84565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612b16565b610b20565b005b34801561034b57600080fd5b50610354610b8c565b6040516103619190612c1a565b60405180910390f35b34801561037657600080fd5b5061037f610ba3565b60405161038c9190612b84565b60405180910390f35b6103af60048036038101906103aa9190612c35565b610bc9565b005b3480156103bd57600080fd5b506103c6610d19565b6040516103d39190612ce7565b60405180910390f35b6103f660048036038101906103f19190612c35565b610d2b565b005b34801561040457600080fd5b5061041f600480360381019061041a9190612b16565b610e7b565b005b34801561042d57600080fd5b50610436610e8d565b6040516104439190612c1a565b60405180910390f35b34801561045857600080fd5b50610461610e93565b60405161046e9190612c1a565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190612b16565b610e99565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190612e37565b610eab565b005b3480156104d557600080fd5b506104de610ecd565b005b3480156104ec57600080fd5b5061050760048036038101906105029190612b16565b610f01565b6040516105149190612b84565b60405180910390f35b34801561052957600080fd5b50610532610f13565b60405161053f9190612abe565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612e80565b610fa1565b60405161057c9190612c1a565b60405180910390f35b34801561059157600080fd5b5061059a611059565b005b3480156105a857600080fd5b506105c360048036038101906105be9190612f75565b61106d565b005b3480156105d157600080fd5b506105da611115565b005b3480156105e857600080fd5b506105f1611149565b005b3480156105ff57600080fd5b506106086111f4565b6040516106159190612abe565b60405180910390f35b34801561062a57600080fd5b50610633611282565b6040516106409190612b84565b60405180910390f35b34801561065557600080fd5b5061065e6112ac565b60405161066b9190612abe565b60405180910390f35b61068e60048036038101906106899190612b16565b61133e565b005b34801561069c57600080fd5b506106b760048036038101906106b29190612fea565b611536565b005b6106d360048036038101906106ce91906130cb565b611640565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190612e37565b611793565b005b34801561070a57600080fd5b506107136117b5565b6040516107209190612c1a565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612b16565b6117bb565b60405161075d9190612abe565b60405180910390f35b34801561077257600080fd5b5061077b6118e5565b6040516107889190612c1a565b60405180910390f35b34801561079d57600080fd5b506107a66118eb565b6040516107b39190612a0a565b60405180910390f35b3480156107c857600080fd5b506107e360048036038101906107de919061314e565b6118fe565b6040516107f09190612a0a565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612e80565b611992565b005b34801561082e57600080fd5b50610837611a15565b6040516108449190612a0a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ee906131bd565b80601f016020809104026020016040519081016040528092919081815260200182805461091a906131bd565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b600061097c82611a28565b6109b2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aeb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610a689291906131ee565b602060405180830381865afa158015610a85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa9919061322c565b610aea57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ae19190612b84565b60405180910390fd5b5b610af58383611a87565b505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b28611bcb565b600a5481610b34610b8c565b610b3e9190613288565b1115610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b769061332a565b60405180910390fd5b610b893382611c49565b50565b6000610b96611c67565b6001546000540303905090565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d07573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c3b57610c36848484611c6c565b610d13565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c849291906131ee565b602060405180830381865afa158015610ca1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc5919061322c565b610d0657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610cfd9190612b84565b60405180910390fd5b5b610d12848484611c6c565b5b50505050565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e69573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9d57610d98848484611f8e565b610e75565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610de69291906131ee565b602060405180830381865afa158015610e03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e27919061322c565b610e6857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e5f9190612b84565b60405180910390fd5b5b610e74848484611f8e565b5b50505050565b610e83611bcb565b80600d8190555050565b600c5481565b600b5481565b610ea1611bcb565b80600c8190555050565b610eb3611bcb565b80600f9080519060200190610ec99291906128b3565b5050565b610ed5611bcb565b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b6000610f0c82611fae565b9050919050565b600f8054610f20906131bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4c906131bd565b8015610f995780601f10610f6e57610100808354040283529160200191610f99565b820191906000526020600020905b815481529060010190602001808311610f7c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611008576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611061611bcb565b61106b600061207a565b565b611075611bcb565b600a548151611082610b8c565b61108c9190613288565b11156110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c49061332a565b60405180910390fd5b60005b8151811015611111576110fe8282815181106110ef576110ee61334a565b5b60200260200101516001611c49565b808061110990613379565b9150506110d0565b5050565b61111d611bcb565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611151611bcb565b60006064600f4761116291906133c1565b61116c919061344a565b90506000606460554761117f91906133c1565b611189919061344a565b90506000821161119857600080fd5b6111c4601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612140565b6111f0601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612140565b5050565b60108054611201906131bd565b80601f016020809104026020016040519081016040528092919081815260200182805461122d906131bd565b801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112bb906131bd565b80601f01602080910402602001604051908101604052809291908181526020018280546112e7906131bd565b80156113345780601f1061130957610100808354040283529160200191611334565b820191906000526020600020905b81548152906001019060200180831161131757829003601f168201915b5050505050905090565b6113466121f1565b600d548161135491906133c1565b341015611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d906134c7565b60405180910390fd5b600e60009054906101000a900460ff166113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90613533565b60405180910390fd5b600c5481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114339190613288565b1115611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b9061359f565b60405180910390fd5b600b5481611480610b8c565b61148a9190613288565b11156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c29061360b565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151a9190613288565b9250508190555061152b3382611c49565b611533612240565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611631576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016115ae9291906131ee565b602060405180830381865afa1580156115cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ef919061322c565b61163057806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016116279190612b84565b60405180910390fd5b5b61163b838361224a565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561177f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116b3576116ae85858585612355565b61178c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016116fc9291906131ee565b602060405180830381865afa158015611719573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173d919061322c565b61177e57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117759190612b84565b60405180910390fd5b5b61178b85858585612355565b5b5050505050565b61179b611bcb565b80601090805190602001906117b19291906128b3565b5050565b600d5481565b606060001515600e60019054906101000a900460ff1615150361186a57601080546117e5906131bd565b80601f0160208091040260200160405190810160405280929190818152602001828054611811906131bd565b801561185e5780601f106118335761010080835404028352916020019161185e565b820191906000526020600020905b81548152906001019060200180831161184157829003601f168201915b505050505090506118e0565b61187382611a28565b6118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a99061369d565b60405180910390fd5b600f6118bd836123c8565b6040516020016118ce9291906137b3565b60405160208183030381529060405290505b919050565b600a5481565b600e60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61199a611bcb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090613854565b60405180910390fd5b611a128161207a565b50565b600e60019054906101000a900460ff1681565b600081611a33611c67565b11158015611a42575060005482105b8015611a80575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000611a9282610f01565b90508073ffffffffffffffffffffffffffffffffffffffff16611ab3612418565b73ffffffffffffffffffffffffffffffffffffffff1614611b1657611adf81611ada612418565b6118fe565b611b15576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611bd3612420565b73ffffffffffffffffffffffffffffffffffffffff16611bf1611282565b73ffffffffffffffffffffffffffffffffffffffff1614611c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3e906138c0565b60405180910390fd5b565b611c63828260405180602001604052806000815250612428565b5050565b600090565b6000611c7782611fae565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611cde576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611cea846124c5565b91509150611d008187611cfb612418565b6124ec565b611d4c57611d1586611d10612418565b6118fe565b611d4b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611db2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dbf8686866001612530565b8015611dca57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e9885611e74888887612536565b7c02000000000000000000000000000000000000000000000000000000001761255e565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611f1e5760006001850190506000600460008381526020019081526020016000205403611f1c576000548114611f1b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f868686866001612589565b505050505050565b611fa983838360405180602001604052806000815250611640565b505050565b60008082905080611fbd611c67565b11612043576000548110156120425760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612040575b6000810361203657600460008360019003935083815260200190815260200160002054905061200c565b8092505050612075565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121669061390e565b60006040518083038185875af1925050503d80600081146121a3576040519150601f19603f3d011682016040523d82523d6000602084013e6121a8565b606091505b50509050806121ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e39061396f565b60405180910390fd5b505050565b600260095403612236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222d906139db565b60405180910390fd5b6002600981905550565b6001600981905550565b8060076000612257612418565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612304612418565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123499190612a0a565b60405180910390a35050565b612360848484610bc9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123c25761238b8484848461258f565b6123c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b60011561240357600184039350600a81066030018453600a81049050806123e1575b50828103602084039350808452505050919050565b600033905090565b600033905090565b61243283836126df565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124c057600080549050600083820390505b612472600086838060010194508661258f565b6124a8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061245f5781600054146124bd57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861254d86868461289a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125b5612418565b8786866040518563ffffffff1660e01b81526004016125d79493929190613a50565b6020604051808303816000875af192505050801561261357506040513d601f19601f820116820180604052508101906126109190613ab1565b60015b61268c573d8060008114612643576040519150601f19603f3d011682016040523d82523d6000602084013e612648565b606091505b506000815103612684576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000820361271f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61272c6000848385612530565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127a3836127946000866000612536565b61279d856128a3565b1761255e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461284457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612809565b506000820361287f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128956000848385612589565b505050565b60009392505050565b60006001821460e11b9050919050565b8280546128bf906131bd565b90600052602060002090601f0160209004810192826128e15760008555612928565b82601f106128fa57805160ff1916838001178555612928565b82800160010185558215612928579182015b8281111561292757825182559160200191906001019061290c565b5b5090506129359190612939565b5090565b5b8082111561295257600081600090555060010161293a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61299f8161296a565b81146129aa57600080fd5b50565b6000813590506129bc81612996565b92915050565b6000602082840312156129d8576129d7612960565b5b60006129e6848285016129ad565b91505092915050565b60008115159050919050565b612a04816129ef565b82525050565b6000602082019050612a1f60008301846129fb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a5f578082015181840152602081019050612a44565b83811115612a6e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a9082612a25565b612a9a8185612a30565b9350612aaa818560208601612a41565b612ab381612a74565b840191505092915050565b60006020820190508181036000830152612ad88184612a85565b905092915050565b6000819050919050565b612af381612ae0565b8114612afe57600080fd5b50565b600081359050612b1081612aea565b92915050565b600060208284031215612b2c57612b2b612960565b5b6000612b3a84828501612b01565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b6e82612b43565b9050919050565b612b7e81612b63565b82525050565b6000602082019050612b996000830184612b75565b92915050565b612ba881612b63565b8114612bb357600080fd5b50565b600081359050612bc581612b9f565b92915050565b60008060408385031215612be257612be1612960565b5b6000612bf085828601612bb6565b9250506020612c0185828601612b01565b9150509250929050565b612c1481612ae0565b82525050565b6000602082019050612c2f6000830184612c0b565b92915050565b600080600060608486031215612c4e57612c4d612960565b5b6000612c5c86828701612bb6565b9350506020612c6d86828701612bb6565b9250506040612c7e86828701612b01565b9150509250925092565b6000819050919050565b6000612cad612ca8612ca384612b43565b612c88565b612b43565b9050919050565b6000612cbf82612c92565b9050919050565b6000612cd182612cb4565b9050919050565b612ce181612cc6565b82525050565b6000602082019050612cfc6000830184612cd8565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d4482612a74565b810181811067ffffffffffffffff82111715612d6357612d62612d0c565b5b80604052505050565b6000612d76612956565b9050612d828282612d3b565b919050565b600067ffffffffffffffff821115612da257612da1612d0c565b5b612dab82612a74565b9050602081019050919050565b82818337600083830152505050565b6000612dda612dd584612d87565b612d6c565b905082815260208101848484011115612df657612df5612d07565b5b612e01848285612db8565b509392505050565b600082601f830112612e1e57612e1d612d02565b5b8135612e2e848260208601612dc7565b91505092915050565b600060208284031215612e4d57612e4c612960565b5b600082013567ffffffffffffffff811115612e6b57612e6a612965565b5b612e7784828501612e09565b91505092915050565b600060208284031215612e9657612e95612960565b5b6000612ea484828501612bb6565b91505092915050565b600067ffffffffffffffff821115612ec857612ec7612d0c565b5b602082029050602081019050919050565b600080fd5b6000612ef1612eec84612ead565b612d6c565b90508083825260208201905060208402830185811115612f1457612f13612ed9565b5b835b81811015612f3d5780612f298882612bb6565b845260208401935050602081019050612f16565b5050509392505050565b600082601f830112612f5c57612f5b612d02565b5b8135612f6c848260208601612ede565b91505092915050565b600060208284031215612f8b57612f8a612960565b5b600082013567ffffffffffffffff811115612fa957612fa8612965565b5b612fb584828501612f47565b91505092915050565b612fc7816129ef565b8114612fd257600080fd5b50565b600081359050612fe481612fbe565b92915050565b6000806040838503121561300157613000612960565b5b600061300f85828601612bb6565b925050602061302085828601612fd5565b9150509250929050565b600067ffffffffffffffff82111561304557613044612d0c565b5b61304e82612a74565b9050602081019050919050565b600061306e6130698461302a565b612d6c565b90508281526020810184848401111561308a57613089612d07565b5b613095848285612db8565b509392505050565b600082601f8301126130b2576130b1612d02565b5b81356130c284826020860161305b565b91505092915050565b600080600080608085870312156130e5576130e4612960565b5b60006130f387828801612bb6565b945050602061310487828801612bb6565b935050604061311587828801612b01565b925050606085013567ffffffffffffffff81111561313657613135612965565b5b6131428782880161309d565b91505092959194509250565b6000806040838503121561316557613164612960565b5b600061317385828601612bb6565b925050602061318485828601612bb6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131d557607f821691505b6020821081036131e8576131e761318e565b5b50919050565b60006040820190506132036000830185612b75565b6132106020830184612b75565b9392505050565b60008151905061322681612fbe565b92915050565b60006020828403121561324257613241612960565b5b600061325084828501613217565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061329382612ae0565b915061329e83612ae0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132d3576132d2613259565b5b828201905092915050565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b6000613314600883612a30565b915061331f826132de565b602082019050919050565b6000602082019050818103600083015261334381613307565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061338482612ae0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036133b6576133b5613259565b5b600182019050919050565b60006133cc82612ae0565b91506133d783612ae0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134105761340f613259565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061345582612ae0565b915061346083612ae0565b9250826134705761346f61341b565b5b828204905092915050565b7f57726f6e67206d696e7420616d6f756e74000000000000000000000000000000600082015250565b60006134b1601183612a30565b91506134bc8261347b565b602082019050919050565b600060208201905081810360008301526134e0816134a4565b9050919050565b7f576169742c2073616c65206973206e6f74206163746976652079657400000000600082015250565b600061351d601c83612a30565b9150613528826134e7565b602082019050919050565b6000602082019050818103600083015261354c81613510565b9050919050565b7f596f752063616e2774206d696e74206d6f7265207468616e206c696d69740000600082015250565b6000613589601e83612a30565b915061359482613553565b602082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b60006135f5600883612a30565b9150613600826135bf565b602082019050919050565b60006020820190508181036000830152613624816135e8565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613687602f83612a30565b91506136928261362b565b604082019050919050565b600060208201905081810360008301526136b68161367a565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546136ea816131bd565b6136f481866136bd565b9450600182166000811461370f576001811461372057613753565b60ff19831686528186019350613753565b613729856136c8565b60005b8381101561374b5781548189015260018201915060208101905061372c565b838801955050505b50505092915050565b600061376782612a25565b61377181856136bd565b9350613781818560208601612a41565b80840191505092915050565b50565b600061379d6000836136bd565b91506137a88261378d565b600082019050919050565b60006137bf82856136dd565b91506137cb828461375c565b91506137d682613790565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061383e602683612a30565b9150613849826137e2565b604082019050919050565b6000602082019050818103600083015261386d81613831565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138aa602083612a30565b91506138b582613874565b602082019050919050565b600060208201905081810360008301526138d98161389d565b9050919050565b600081905092915050565b60006138f86000836138e0565b91506139038261378d565b600082019050919050565b6000613919826138eb565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613959601083612a30565b915061396482613923565b602082019050919050565b600060208201905081810360008301526139888161394c565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006139c5601f83612a30565b91506139d08261398f565b602082019050919050565b600060208201905081810360008301526139f4816139b8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a22826139fb565b613a2c8185613a06565b9350613a3c818560208601612a41565b613a4581612a74565b840191505092915050565b6000608082019050613a656000830187612b75565b613a726020830186612b75565b613a7f6040830185612c0b565b8181036060830152613a918184613a17565b905095945050505050565b600081519050613aab81612996565b92915050565b600060208284031215613ac757613ac6612960565b5b6000613ad584828501613a9c565b9150509291505056fea2646970667358221220ee508c1a9090021d9c3bbc11fd7b101a4f157fbdda1af389e667b988675606a264736f6c634300080d0033

Deployed Bytecode Sourcemap

63784:4400:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24184:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25086:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31577:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67397:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64258:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65091:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20837:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64184:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67570:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2971:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67749:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66524:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63962:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63915:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66622:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66113:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66338:80;;;;;;;;;;;;;:::i;:::-;;26479:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64124:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22021:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62937:103;;;;;;;;;;;;;:::i;:::-;;65293:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66426:90;;;;;;;;;;;;;:::i;:::-;;66733:284;;;;;;;;;;;;;:::i;:::-;;64152:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62289:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25262:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64577:506;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67213:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67936:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66219:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64001:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65680:425;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63877:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64047:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32526:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63195:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64087:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24184:639;24269:4;24608:10;24593:25;;:11;:25;;;;:102;;;;24685:10;24670:25;;:11;:25;;;;24593:102;:179;;;;24762:10;24747:25;;:11;:25;;;;24593:179;24573:199;;24184:639;;;:::o;25086:100::-;25140:13;25173:5;25166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25086:100;:::o;31577:218::-;31653:7;31678:16;31686:7;31678;:16::i;:::-;31673:64;;31703:34;;;;;;;;;;;;;;31673:64;31757:15;:24;31773:7;31757:24;;;;;;;;;;;:30;;;;;;;;;;;;31750:37;;31577:218;;;:::o;67397:165::-;67501:8;5013:1;3071:42;4965:45;;;:49;4961:225;;;3071:42;5036;;;5087:4;5094:8;5036:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5031:144;;5150:8;5131:28;;;;;;;;;;;:::i;:::-;;;;;;;;5031:144;4961:225;67522:32:::1;67536:8;67546:7;67522:13;:32::i;:::-;67397:165:::0;;;:::o;64258:67::-;;;;;;;;;;;;;:::o;65091:194::-;62175:13;:11;:13::i;:::-;65200:9:::1;;65185:11;65169:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;65161:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;65243:34;65253:10;65265:11;65243:9;:34::i;:::-;65091:194:::0;:::o;20837:323::-;20898:7;21126:15;:13;:15::i;:::-;21111:12;;21095:13;;:28;:46;21088:53;;20837:323;:::o;64184:67::-;;;;;;;;;;;;;:::o;67570:171::-;67679:4;4267:1;3071:42;4219:45;;;:49;4215:539;;;4508:10;4500:18;;:4;:18;;;4496:85;;67696:37:::1;67715:4;67721:2;67725:7;67696:18;:37::i;:::-;4559:7:::0;;4496:85;3071:42;4600;;;4651:4;4658:10;4600:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4595:148;;4716:10;4697:30;;;;;;;;;;;:::i;:::-;;;;;;;;4595:148;4215:539;67696:37:::1;67715:4;67721:2;67725:7;67696:18;:37::i;:::-;67570:171:::0;;;;;:::o;2971:143::-;3071:42;2971:143;:::o;67749:179::-;67862:4;4267:1;3071:42;4219:45;;;:49;4215:539;;;4508:10;4500:18;;:4;:18;;;4496:85;;67879:41:::1;67902:4;67908:2;67912:7;67879:22;:41::i;:::-;4559:7:::0;;4496:85;3071:42;4600;;;4651:4;4658:10;4600:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4595:148;;4716:10;4697:30;;;;;;;;;;;:::i;:::-;;;;;;;;4595:148;4215:539;67879:41:::1;67902:4;67908:2;67912:7;67879:22;:41::i;:::-;67749:179:::0;;;;;:::o;66524:90::-;62175:13;:11;:13::i;:::-;66599:7:::1;66588:8;:18;;;;66524:90:::0;:::o;63962:32::-;;;;:::o;63915:40::-;;;;:::o;66622:103::-;62175:13;:11;:13::i;:::-;66707:10:::1;66692:12;:25;;;;66622:103:::0;:::o;66113:98::-;62175:13;:11;:13::i;:::-;66195:8:::1;66185:7;:18;;;;;;;;;;;;:::i;:::-;;66113:98:::0;:::o;66338:80::-;62175:13;:11;:13::i;:::-;66402:8:::1;;;;;;;;;;;66401:9;66390:8;;:20;;;;;;;;;;;;;;;;;;66338:80::o:0;26479:152::-;26551:7;26594:27;26613:7;26594:18;:27::i;:::-;26571:52;;26479:152;;;:::o;64124:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22021:233::-;22093:7;22134:1;22117:19;;:5;:19;;;22113:60;;22145:28;;;;;;;;;;;;;;22113:60;16180:13;22191:18;:25;22210:5;22191:25;;;;;;;;;;;;;;;;:55;22184:62;;22021:233;;;:::o;62937:103::-;62175:13;:11;:13::i;:::-;63002:30:::1;63029:1;63002:18;:30::i;:::-;62937:103::o:0;65293:263::-;62175:13;:11;:13::i;:::-;65412:9:::1;;65391:10;:17;65375:13;:11;:13::i;:::-;:33;;;;:::i;:::-;:46;;65367:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;65452:9;65447:102;65471:10;:17;65467:1;:21;65447:102;;;65510:27;65520:10;65531:1;65520:13;;;;;;;;:::i;:::-;;;;;;;;65535:1;65510:9;:27::i;:::-;65490:3;;;;;:::i;:::-;;;;65447:102;;;;65293:263:::0;:::o;66426:90::-;62175:13;:11;:13::i;:::-;66495::::1;;;;;;;;;;;66494:14;66478:13;;:30;;;;;;;;;;;;;;;;;;66426:90::o:0;66733:284::-;62175:13;:11;:13::i;:::-;66786:16:::1;66834:3;66829:2;66805:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;66786:51;;66848:16;66896:3;66891:2;66867:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;66848:51;;66929:1;66918:8;:12;66910:21;;;::::0;::::1;;66942:28;66952:7;;;;;;;;;;;66961:8;66942:9;:28::i;:::-;66981;66991:7;;;;;;;;;;;67000:8;66981:9;:28::i;:::-;66775:242;;66733:284::o:0;64152:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62289:87::-;62335:7;62362:6;;;;;;;;;;;62355:13;;62289:87;:::o;25262:104::-;25318:13;25351:7;25344:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25262:104;:::o;64577:506::-;59560:21;:19;:21::i;:::-;64684:8:::1;;64671:10;:21;;;;:::i;:::-;64658:9;:34;;64650:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;64733:13;;;;;;;;;;;64725:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;64842:12;;64828:10;64798:15;:27;64814:10;64798:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:56;;64790:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;64938:18;;64924:10;64908:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:48;;64900:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;65021:10;64990:15;:27;65006:10;64990:27;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;65042:33;65052:10;65064;65042:9;:33::i;:::-;59604:20:::0;:18;:20::i;:::-;64577:506;:::o;67213:176::-;67317:8;5013:1;3071:42;4965:45;;;:49;4961:225;;;3071:42;5036;;;5087:4;5094:8;5036:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5031:144;;5150:8;5131:28;;;;;;;;;;;:::i;:::-;;;;;;;;5031:144;4961:225;67338:43:::1;67362:8;67372;67338:23;:43::i;:::-;67213:176:::0;;;:::o;67936:245::-;68104:4;4267:1;3071:42;4219:45;;;:49;4215:539;;;4508:10;4500:18;;:4;:18;;;4496:85;;68126:47:::1;68149:4;68155:2;68159:7;68168:4;68126:22;:47::i;:::-;4559:7:::0;;4496:85;3071:42;4600;;;4651:4;4658:10;4600:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4595:148;;4716:10;4697:30;;;;;;;;;;;:::i;:::-;;;;;;;;4595:148;4215:539;68126:47:::1;68149:4;68155:2;68159:7;68168:4;68126:22;:47::i;:::-;67936:245:::0;;;;;;:::o;66219:111::-;62175:13;:11;:13::i;:::-;66312:10:::1;66300:9;:22;;;;;;;;;;;;:::i;:::-;;66219:111:::0;:::o;64001:37::-;;;;:::o;65680:425::-;65798:13;65847:5;65835:17;;:8;;;;;;;;;;;:17;;;65831:66;;65876:9;65869:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65831:66;65931:16;65939:7;65931;:16::i;:::-;65909:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;66064:7;66073:18;66083:7;66073:9;:18::i;:::-;66047:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66033:64;;65680:425;;;;:::o;63877:31::-;;;;:::o;64047:33::-;;;;;;;;;;;;;:::o;32526:164::-;32623:4;32647:18;:25;32666:5;32647:25;;;;;;;;;;;;;;;:35;32673:8;32647:35;;;;;;;;;;;;;;;;;;;;;;;;;32640:42;;32526:164;;;;:::o;63195:201::-;62175:13;:11;:13::i;:::-;63304:1:::1;63284:22;;:8;:22;;::::0;63276:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63360:28;63379:8;63360:18;:28::i;:::-;63195:201:::0;:::o;64087:28::-;;;;;;;;;;;;;:::o;32948:282::-;33013:4;33069:7;33050:15;:13;:15::i;:::-;:26;;:66;;;;;33103:13;;33093:7;:23;33050:66;:153;;;;;33202:1;16956:8;33154:17;:26;33172:7;33154:26;;;;;;;;;;;;:44;:49;33050:153;33030:173;;32948:282;;;:::o;31010:408::-;31099:13;31115:16;31123:7;31115;:16::i;:::-;31099:32;;31171:5;31148:28;;:19;:17;:19::i;:::-;:28;;;31144:175;;31196:44;31213:5;31220:19;:17;:19::i;:::-;31196:16;:44::i;:::-;31191:128;;31268:35;;;;;;;;;;;;;;31191:128;31144:175;31364:2;31331:15;:24;31347:7;31331:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31402:7;31398:2;31382:28;;31391:5;31382:28;;;;;;;;;;;;31088:330;31010:408;;:::o;62454:132::-;62529:12;:10;:12::i;:::-;62518:23;;:7;:5;:7::i;:::-;:23;;;62510:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62454:132::o;49088:112::-;49165:27;49175:2;49179:8;49165:27;;;;;;;;;;;;:9;:27::i;:::-;49088:112;;:::o;20353:92::-;20409:7;20353:92;:::o;35216:2825::-;35358:27;35388;35407:7;35388:18;:27::i;:::-;35358:57;;35473:4;35432:45;;35448:19;35432:45;;;35428:86;;35486:28;;;;;;;;;;;;;;35428:86;35528:27;35557:23;35584:35;35611:7;35584:26;:35::i;:::-;35527:92;;;;35719:68;35744:15;35761:4;35767:19;:17;:19::i;:::-;35719:24;:68::i;:::-;35714:180;;35807:43;35824:4;35830:19;:17;:19::i;:::-;35807:16;:43::i;:::-;35802:92;;35859:35;;;;;;;;;;;;;;35802:92;35714:180;35925:1;35911:16;;:2;:16;;;35907:52;;35936:23;;;;;;;;;;;;;;35907:52;35972:43;35994:4;36000:2;36004:7;36013:1;35972:21;:43::i;:::-;36108:15;36105:160;;;36248:1;36227:19;36220:30;36105:160;36645:18;:24;36664:4;36645:24;;;;;;;;;;;;;;;;36643:26;;;;;;;;;;;;36714:18;:22;36733:2;36714:22;;;;;;;;;;;;;;;;36712:24;;;;;;;;;;;37036:146;37073:2;37122:45;37137:4;37143:2;37147:19;37122:14;:45::i;:::-;17236:8;37094:73;37036:18;:146::i;:::-;37007:17;:26;37025:7;37007:26;;;;;;;;;;;:175;;;;37353:1;17236:8;37302:19;:47;:52;37298:627;;37375:19;37407:1;37397:7;:11;37375:33;;37564:1;37530:17;:30;37548:11;37530:30;;;;;;;;;;;;:35;37526:384;;37668:13;;37653:11;:28;37649:242;;37848:19;37815:17;:30;37833:11;37815:30;;;;;;;;;;;:52;;;;37649:242;37526:384;37356:569;37298:627;37972:7;37968:2;37953:27;;37962:4;37953:27;;;;;;;;;;;;37991:42;38012:4;38018:2;38022:7;38031:1;37991:20;:42::i;:::-;35347:2694;;;35216:2825;;;:::o;38137:193::-;38283:39;38300:4;38306:2;38310:7;38283:39;;;;;;;;;;;;:16;:39::i;:::-;38137:193;;;:::o;27634:1275::-;27701:7;27721:12;27736:7;27721:22;;27804:4;27785:15;:13;:15::i;:::-;:23;27781:1061;;27838:13;;27831:4;:20;27827:1015;;;27876:14;27893:17;:23;27911:4;27893:23;;;;;;;;;;;;27876:40;;28010:1;16956:8;27982:6;:24;:29;27978:845;;28647:113;28664:1;28654:6;:11;28647:113;;28707:17;:25;28725:6;;;;;;;28707:25;;;;;;;;;;;;28698:34;;28647:113;;;28793:6;28786:13;;;;;;27978:845;27853:989;27827:1015;27781:1061;28870:31;;;;;;;;;;;;;;27634:1275;;;;:::o;63556:191::-;63630:16;63649:6;;;;;;;;;;;63630:25;;63675:8;63666:6;;:17;;;;;;;;;;;;;;;;;;63730:8;63699:40;;63720:8;63699:40;;;;;;;;;;;;63619:128;63556:191;:::o;67025:180::-;67099:12;67117:8;:13;;67138:7;67117:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67098:52;;;67169:7;67161:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;67087:118;67025:180;;:::o;59640:293::-;59042:1;59774:7;;:19;59766:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59042:1;59907:7;:18;;;;59640:293::o;59941:213::-;58998:1;60124:7;:22;;;;59941:213::o;32135:234::-;32282:8;32230:18;:39;32249:19;:17;:19::i;:::-;32230:39;;;;;;;;;;;;;;;:49;32270:8;32230:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32342:8;32306:55;;32321:19;:17;:19::i;:::-;32306:55;;;32352:8;32306:55;;;;;;:::i;:::-;;;;;;;;32135:234;;:::o;38928:407::-;39103:31;39116:4;39122:2;39126:7;39103:12;:31::i;:::-;39167:1;39149:2;:14;;;:19;39145:183;;39188:56;39219:4;39225:2;39229:7;39238:5;39188:30;:56::i;:::-;39183:145;;39272:40;;;;;;;;;;;;;;39183:145;39145:183;38928:407;;;;:::o;55463:1745::-;55528:17;55962:4;55955;55949:11;55945:22;56054:1;56048:4;56041:15;56129:4;56126:1;56122:12;56115:19;;56211:1;56206:3;56199:14;56315:3;56554:5;56536:428;56562:1;56536:428;;;56602:1;56597:3;56593:11;56586:18;;56773:2;56767:4;56763:13;56759:2;56755:22;56750:3;56742:36;56867:2;56861:4;56857:13;56849:21;;56934:4;56536:428;56924:25;56536:428;56540:21;57003:3;56998;56994:13;57118:4;57113:3;57109:14;57102:21;;57183:6;57178:3;57171:19;55567:1634;;;55463:1745;;;:::o;55256:105::-;55316:7;55343:10;55336:17;;55256:105;:::o;60840:98::-;60893:7;60920:10;60913:17;;60840:98;:::o;48315:689::-;48446:19;48452:2;48456:8;48446:5;:19::i;:::-;48525:1;48507:2;:14;;;:19;48503:483;;48547:11;48561:13;;48547:27;;48593:13;48615:8;48609:3;:14;48593:30;;48642:233;48673:62;48712:1;48716:2;48720:7;;;;;;48729:5;48673:30;:62::i;:::-;48668:167;;48771:40;;;;;;;;;;;;;;48668:167;48870:3;48862:5;:11;48642:233;;48957:3;48940:13;;:20;48936:34;;48962:8;;;48936:34;48528:458;;48503:483;48315:689;;;:::o;34111:485::-;34213:27;34242:23;34283:38;34324:15;:24;34340:7;34324:24;;;;;;;;;;;34283:65;;34501:18;34478:41;;34558:19;34552:26;34533:45;;34463:126;34111:485;;;:::o;33339:659::-;33488:11;33653:16;33646:5;33642:28;33633:37;;33813:16;33802:9;33798:32;33785:45;;33963:15;33952:9;33949:30;33941:5;33930:9;33927:20;33924:56;33914:66;;33339:659;;;;;:::o;39997:159::-;;;;;:::o;54565:311::-;54700:7;54720:16;17360:3;54746:19;:41;;54720:68;;17360:3;54814:31;54825:4;54831:2;54835:9;54814:10;:31::i;:::-;54806:40;;:62;;54799:69;;;54565:311;;;;;:::o;29457:450::-;29537:14;29705:16;29698:5;29694:28;29685:37;;29882:5;29868:11;29843:23;29839:41;29836:52;29829:5;29826:63;29816:73;;29457:450;;;;:::o;40821:158::-;;;;;:::o;41419:716::-;41582:4;41628:2;41603:45;;;41649:19;:17;:19::i;:::-;41670:4;41676:7;41685:5;41603:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41599:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41903:1;41886:6;:13;:18;41882:235;;41932:40;;;;;;;;;;;;;;41882:235;42075:6;42069:13;42060:6;42056:2;42052:15;42045:38;41599:529;41772:54;;;41762:64;;;:6;:64;;;;41755:71;;;41419:716;;;;;;:::o;42597:2966::-;42670:20;42693:13;;42670:36;;42733:1;42721:8;:13;42717:44;;42743:18;;;;;;;;;;;;;;42717:44;42774:61;42804:1;42808:2;42812:12;42826:8;42774:21;:61::i;:::-;43318:1;16318:2;43288:1;:26;;43287:32;43275:8;:45;43249:18;:22;43268:2;43249:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43597:139;43634:2;43688:33;43711:1;43715:2;43719:1;43688:14;:33::i;:::-;43655:30;43676:8;43655:20;:30::i;:::-;:66;43597:18;:139::i;:::-;43563:17;:31;43581:12;43563:31;;;;;;;;;;;:173;;;;43753:16;43784:11;43813:8;43798:12;:23;43784:37;;44334:16;44330:2;44326:25;44314:37;;44706:12;44666:8;44625:1;44563:25;44504:1;44443;44416:335;45077:1;45063:12;45059:20;45017:346;45118:3;45109:7;45106:16;45017:346;;45336:7;45326:8;45323:1;45296:25;45293:1;45290;45285:59;45171:1;45162:7;45158:15;45147:26;;45017:346;;;45021:77;45408:1;45396:8;:13;45392:45;;45418:19;;;;;;;;;;;;;;45392:45;45470:3;45454:13;:19;;;;43023:2462;;45495:60;45524:1;45528:2;45532:12;45546:8;45495:20;:60::i;:::-;42659:2904;42597:2966;;:::o;54266:147::-;54403:6;54266:147;;;;;:::o;30009:324::-;30079:14;30312:1;30302:8;30299:15;30273:24;30269:46;30259:56;;30009:324;;;:::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:60::-;5943:3;5964:5;5957:12;;5915:60;;;:::o;5981:142::-;6031:9;6064:53;6082:34;6091:24;6109:5;6091:24;:::i;:::-;6082:34;:::i;:::-;6064:53;:::i;:::-;6051:66;;5981:142;;;:::o;6129:126::-;6179:9;6212:37;6243:5;6212:37;:::i;:::-;6199:50;;6129:126;;;:::o;6261:157::-;6342:9;6375:37;6406:5;6375:37;:::i;:::-;6362:50;;6261:157;;;:::o;6424:193::-;6542:68;6604:5;6542:68;:::i;:::-;6537:3;6530:81;6424:193;;:::o;6623:284::-;6747:4;6785:2;6774:9;6770:18;6762:26;;6798:102;6897:1;6886:9;6882:17;6873:6;6798:102;:::i;:::-;6623:284;;;;:::o;6913:117::-;7022:1;7019;7012:12;7036:117;7145:1;7142;7135:12;7159:180;7207:77;7204:1;7197:88;7304:4;7301:1;7294:15;7328:4;7325:1;7318:15;7345:281;7428:27;7450:4;7428:27;:::i;:::-;7420:6;7416:40;7558:6;7546:10;7543:22;7522:18;7510:10;7507:34;7504:62;7501:88;;;7569:18;;:::i;:::-;7501:88;7609:10;7605:2;7598:22;7388:238;7345:281;;:::o;7632:129::-;7666:6;7693:20;;:::i;:::-;7683:30;;7722:33;7750:4;7742:6;7722:33;:::i;:::-;7632:129;;;:::o;7767:308::-;7829:4;7919:18;7911:6;7908:30;7905:56;;;7941:18;;:::i;:::-;7905:56;7979:29;8001:6;7979:29;:::i;:::-;7971:37;;8063:4;8057;8053:15;8045:23;;7767:308;;;:::o;8081:154::-;8165:6;8160:3;8155;8142:30;8227:1;8218:6;8213:3;8209:16;8202:27;8081:154;;;:::o;8241:412::-;8319:5;8344:66;8360:49;8402:6;8360:49;:::i;:::-;8344:66;:::i;:::-;8335:75;;8433:6;8426:5;8419:21;8471:4;8464:5;8460:16;8509:3;8500:6;8495:3;8491:16;8488:25;8485:112;;;8516:79;;:::i;:::-;8485:112;8606:41;8640:6;8635:3;8630;8606:41;:::i;:::-;8325:328;8241:412;;;;;:::o;8673:340::-;8729:5;8778:3;8771:4;8763:6;8759:17;8755:27;8745:122;;8786:79;;:::i;:::-;8745:122;8903:6;8890:20;8928:79;9003:3;8995:6;8988:4;8980:6;8976:17;8928:79;:::i;:::-;8919:88;;8735:278;8673:340;;;;:::o;9019:509::-;9088:6;9137:2;9125:9;9116:7;9112:23;9108:32;9105:119;;;9143:79;;:::i;:::-;9105:119;9291:1;9280:9;9276:17;9263:31;9321:18;9313:6;9310:30;9307:117;;;9343:79;;:::i;:::-;9307:117;9448:63;9503:7;9494:6;9483:9;9479:22;9448:63;:::i;:::-;9438:73;;9234:287;9019:509;;;;:::o;9534:329::-;9593:6;9642:2;9630:9;9621:7;9617:23;9613:32;9610:119;;;9648:79;;:::i;:::-;9610:119;9768:1;9793:53;9838:7;9829:6;9818:9;9814:22;9793:53;:::i;:::-;9783:63;;9739:117;9534:329;;;;:::o;9869:311::-;9946:4;10036:18;10028:6;10025:30;10022:56;;;10058:18;;:::i;:::-;10022:56;10108:4;10100:6;10096:17;10088:25;;10168:4;10162;10158:15;10150:23;;9869:311;;;:::o;10186:117::-;10295:1;10292;10285:12;10326:710;10422:5;10447:81;10463:64;10520:6;10463:64;:::i;:::-;10447:81;:::i;:::-;10438:90;;10548:5;10577:6;10570:5;10563:21;10611:4;10604:5;10600:16;10593:23;;10664:4;10656:6;10652:17;10644:6;10640:30;10693:3;10685:6;10682:15;10679:122;;;10712:79;;:::i;:::-;10679:122;10827:6;10810:220;10844:6;10839:3;10836:15;10810:220;;;10919:3;10948:37;10981:3;10969:10;10948:37;:::i;:::-;10943:3;10936:50;11015:4;11010:3;11006:14;10999:21;;10886:144;10870:4;10865:3;10861:14;10854:21;;10810:220;;;10814:21;10428:608;;10326:710;;;;;:::o;11059:370::-;11130:5;11179:3;11172:4;11164:6;11160:17;11156:27;11146:122;;11187:79;;:::i;:::-;11146:122;11304:6;11291:20;11329:94;11419:3;11411:6;11404:4;11396:6;11392:17;11329:94;:::i;:::-;11320:103;;11136:293;11059:370;;;;:::o;11435:539::-;11519:6;11568:2;11556:9;11547:7;11543:23;11539:32;11536:119;;;11574:79;;:::i;:::-;11536:119;11722:1;11711:9;11707:17;11694:31;11752:18;11744:6;11741:30;11738:117;;;11774:79;;:::i;:::-;11738:117;11879:78;11949:7;11940:6;11929:9;11925:22;11879:78;:::i;:::-;11869:88;;11665:302;11435:539;;;;:::o;11980:116::-;12050:21;12065:5;12050:21;:::i;:::-;12043:5;12040:32;12030:60;;12086:1;12083;12076:12;12030:60;11980:116;:::o;12102:133::-;12145:5;12183:6;12170:20;12161:29;;12199:30;12223:5;12199:30;:::i;:::-;12102:133;;;;:::o;12241:468::-;12306:6;12314;12363:2;12351:9;12342:7;12338:23;12334:32;12331:119;;;12369:79;;:::i;:::-;12331:119;12489:1;12514:53;12559:7;12550:6;12539:9;12535:22;12514:53;:::i;:::-;12504:63;;12460:117;12616:2;12642:50;12684:7;12675:6;12664:9;12660:22;12642:50;:::i;:::-;12632:60;;12587:115;12241:468;;;;;:::o;12715:307::-;12776:4;12866:18;12858:6;12855:30;12852:56;;;12888:18;;:::i;:::-;12852:56;12926:29;12948:6;12926:29;:::i;:::-;12918:37;;13010:4;13004;13000:15;12992:23;;12715:307;;;:::o;13028:410::-;13105:5;13130:65;13146:48;13187:6;13146:48;:::i;:::-;13130:65;:::i;:::-;13121:74;;13218:6;13211:5;13204:21;13256:4;13249:5;13245:16;13294:3;13285:6;13280:3;13276:16;13273:25;13270:112;;;13301:79;;:::i;:::-;13270:112;13391:41;13425:6;13420:3;13415;13391:41;:::i;:::-;13111:327;13028:410;;;;;:::o;13457:338::-;13512:5;13561:3;13554:4;13546:6;13542:17;13538:27;13528:122;;13569:79;;:::i;:::-;13528:122;13686:6;13673:20;13711:78;13785:3;13777:6;13770:4;13762:6;13758:17;13711:78;:::i;:::-;13702:87;;13518:277;13457:338;;;;:::o;13801:943::-;13896:6;13904;13912;13920;13969:3;13957:9;13948:7;13944:23;13940:33;13937:120;;;13976:79;;:::i;:::-;13937:120;14096:1;14121:53;14166:7;14157:6;14146:9;14142:22;14121:53;:::i;:::-;14111:63;;14067:117;14223:2;14249:53;14294:7;14285:6;14274:9;14270:22;14249:53;:::i;:::-;14239:63;;14194:118;14351:2;14377:53;14422:7;14413:6;14402:9;14398:22;14377:53;:::i;:::-;14367:63;;14322:118;14507:2;14496:9;14492:18;14479:32;14538:18;14530:6;14527:30;14524:117;;;14560:79;;:::i;:::-;14524:117;14665:62;14719:7;14710:6;14699:9;14695:22;14665:62;:::i;:::-;14655:72;;14450:287;13801:943;;;;;;;:::o;14750:474::-;14818:6;14826;14875:2;14863:9;14854:7;14850:23;14846:32;14843:119;;;14881:79;;:::i;:::-;14843:119;15001:1;15026:53;15071:7;15062:6;15051:9;15047:22;15026:53;:::i;:::-;15016:63;;14972:117;15128:2;15154:53;15199:7;15190:6;15179:9;15175:22;15154:53;:::i;:::-;15144:63;;15099:118;14750:474;;;;;:::o;15230:180::-;15278:77;15275:1;15268:88;15375:4;15372:1;15365:15;15399:4;15396:1;15389:15;15416:320;15460:6;15497:1;15491:4;15487:12;15477:22;;15544:1;15538:4;15534:12;15565:18;15555:81;;15621:4;15613:6;15609:17;15599:27;;15555:81;15683:2;15675:6;15672:14;15652:18;15649:38;15646:84;;15702:18;;:::i;:::-;15646:84;15467:269;15416:320;;;:::o;15742:332::-;15863:4;15901:2;15890:9;15886:18;15878:26;;15914:71;15982:1;15971:9;15967:17;15958:6;15914:71;:::i;:::-;15995:72;16063:2;16052:9;16048:18;16039:6;15995:72;:::i;:::-;15742:332;;;;;:::o;16080:137::-;16134:5;16165:6;16159:13;16150:22;;16181:30;16205:5;16181:30;:::i;:::-;16080:137;;;;:::o;16223:345::-;16290:6;16339:2;16327:9;16318:7;16314:23;16310:32;16307:119;;;16345:79;;:::i;:::-;16307:119;16465:1;16490:61;16543:7;16534:6;16523:9;16519:22;16490:61;:::i;:::-;16480:71;;16436:125;16223:345;;;;:::o;16574:180::-;16622:77;16619:1;16612:88;16719:4;16716:1;16709:15;16743:4;16740:1;16733:15;16760:305;16800:3;16819:20;16837:1;16819:20;:::i;:::-;16814:25;;16853:20;16871:1;16853:20;:::i;:::-;16848:25;;17007:1;16939:66;16935:74;16932:1;16929:81;16926:107;;;17013:18;;:::i;:::-;16926:107;17057:1;17054;17050:9;17043:16;;16760:305;;;;:::o;17071:158::-;17211:10;17207:1;17199:6;17195:14;17188:34;17071:158;:::o;17235:365::-;17377:3;17398:66;17462:1;17457:3;17398:66;:::i;:::-;17391:73;;17473:93;17562:3;17473:93;:::i;:::-;17591:2;17586:3;17582:12;17575:19;;17235:365;;;:::o;17606:419::-;17772:4;17810:2;17799:9;17795:18;17787:26;;17859:9;17853:4;17849:20;17845:1;17834:9;17830:17;17823:47;17887:131;18013:4;17887:131;:::i;:::-;17879:139;;17606:419;;;:::o;18031:180::-;18079:77;18076:1;18069:88;18176:4;18173:1;18166:15;18200:4;18197:1;18190:15;18217:233;18256:3;18279:24;18297:5;18279:24;:::i;:::-;18270:33;;18325:66;18318:5;18315:77;18312:103;;18395:18;;:::i;:::-;18312:103;18442:1;18435:5;18431:13;18424:20;;18217:233;;;:::o;18456:348::-;18496:7;18519:20;18537:1;18519:20;:::i;:::-;18514:25;;18553:20;18571:1;18553:20;:::i;:::-;18548:25;;18741:1;18673:66;18669:74;18666:1;18663:81;18658:1;18651:9;18644:17;18640:105;18637:131;;;18748:18;;:::i;:::-;18637:131;18796:1;18793;18789:9;18778:20;;18456:348;;;;:::o;18810:180::-;18858:77;18855:1;18848:88;18955:4;18952:1;18945:15;18979:4;18976:1;18969:15;18996:185;19036:1;19053:20;19071:1;19053:20;:::i;:::-;19048:25;;19087:20;19105:1;19087:20;:::i;:::-;19082:25;;19126:1;19116:35;;19131:18;;:::i;:::-;19116:35;19173:1;19170;19166:9;19161:14;;18996:185;;;;:::o;19187:167::-;19327:19;19323:1;19315:6;19311:14;19304:43;19187:167;:::o;19360:366::-;19502:3;19523:67;19587:2;19582:3;19523:67;:::i;:::-;19516:74;;19599:93;19688:3;19599:93;:::i;:::-;19717:2;19712:3;19708:12;19701:19;;19360:366;;;:::o;19732:419::-;19898:4;19936:2;19925:9;19921:18;19913:26;;19985:9;19979:4;19975:20;19971:1;19960:9;19956:17;19949:47;20013:131;20139:4;20013:131;:::i;:::-;20005:139;;19732:419;;;:::o;20157:178::-;20297:30;20293:1;20285:6;20281:14;20274:54;20157:178;:::o;20341:366::-;20483:3;20504:67;20568:2;20563:3;20504:67;:::i;:::-;20497:74;;20580:93;20669:3;20580:93;:::i;:::-;20698:2;20693:3;20689:12;20682:19;;20341:366;;;:::o;20713:419::-;20879:4;20917:2;20906:9;20902:18;20894:26;;20966:9;20960:4;20956:20;20952:1;20941:9;20937:17;20930:47;20994:131;21120:4;20994:131;:::i;:::-;20986:139;;20713:419;;;:::o;21138:180::-;21278:32;21274:1;21266:6;21262:14;21255:56;21138:180;:::o;21324:366::-;21466:3;21487:67;21551:2;21546:3;21487:67;:::i;:::-;21480:74;;21563:93;21652:3;21563:93;:::i;:::-;21681:2;21676:3;21672:12;21665:19;;21324:366;;;:::o;21696:419::-;21862:4;21900:2;21889:9;21885:18;21877:26;;21949:9;21943:4;21939:20;21935:1;21924:9;21920:17;21913:47;21977:131;22103:4;21977:131;:::i;:::-;21969:139;;21696:419;;;:::o;22121:158::-;22261:10;22257:1;22249:6;22245:14;22238:34;22121:158;:::o;22285:365::-;22427:3;22448:66;22512:1;22507:3;22448:66;:::i;:::-;22441:73;;22523:93;22612:3;22523:93;:::i;:::-;22641:2;22636:3;22632:12;22625:19;;22285:365;;;:::o;22656:419::-;22822:4;22860:2;22849:9;22845:18;22837:26;;22909:9;22903:4;22899:20;22895:1;22884:9;22880:17;22873:47;22937:131;23063:4;22937:131;:::i;:::-;22929:139;;22656:419;;;:::o;23081:234::-;23221:34;23217:1;23209:6;23205:14;23198:58;23290:17;23285:2;23277:6;23273:15;23266:42;23081:234;:::o;23321:366::-;23463:3;23484:67;23548:2;23543:3;23484:67;:::i;:::-;23477:74;;23560:93;23649:3;23560:93;:::i;:::-;23678:2;23673:3;23669:12;23662:19;;23321:366;;;:::o;23693:419::-;23859:4;23897:2;23886:9;23882:18;23874:26;;23946:9;23940:4;23936:20;23932:1;23921:9;23917:17;23910:47;23974:131;24100:4;23974:131;:::i;:::-;23966:139;;23693:419;;;:::o;24118:148::-;24220:11;24257:3;24242:18;;24118:148;;;;:::o;24272:141::-;24321:4;24344:3;24336:11;;24367:3;24364:1;24357:14;24401:4;24398:1;24388:18;24380:26;;24272:141;;;:::o;24443:845::-;24546:3;24583:5;24577:12;24612:36;24638:9;24612:36;:::i;:::-;24664:89;24746:6;24741:3;24664:89;:::i;:::-;24657:96;;24784:1;24773:9;24769:17;24800:1;24795:137;;;;24946:1;24941:341;;;;24762:520;;24795:137;24879:4;24875:9;24864;24860:25;24855:3;24848:38;24915:6;24910:3;24906:16;24899:23;;24795:137;;24941:341;25008:38;25040:5;25008:38;:::i;:::-;25068:1;25082:154;25096:6;25093:1;25090:13;25082:154;;;25170:7;25164:14;25160:1;25155:3;25151:11;25144:35;25220:1;25211:7;25207:15;25196:26;;25118:4;25115:1;25111:12;25106:17;;25082:154;;;25265:6;25260:3;25256:16;25249:23;;24948:334;;24762:520;;24550:738;;24443:845;;;;:::o;25294:377::-;25400:3;25428:39;25461:5;25428:39;:::i;:::-;25483:89;25565:6;25560:3;25483:89;:::i;:::-;25476:96;;25581:52;25626:6;25621:3;25614:4;25607:5;25603:16;25581:52;:::i;:::-;25658:6;25653:3;25649:16;25642:23;;25404:267;25294:377;;;;:::o;25677:114::-;;:::o;25797:400::-;25957:3;25978:84;26060:1;26055:3;25978:84;:::i;:::-;25971:91;;26071:93;26160:3;26071:93;:::i;:::-;26189:1;26184:3;26180:11;26173:18;;25797:400;;;:::o;26203:695::-;26481:3;26503:92;26591:3;26582:6;26503:92;:::i;:::-;26496:99;;26612:95;26703:3;26694:6;26612:95;:::i;:::-;26605:102;;26724:148;26868:3;26724:148;:::i;:::-;26717:155;;26889:3;26882:10;;26203:695;;;;;:::o;26904:225::-;27044:34;27040:1;27032:6;27028:14;27021:58;27113:8;27108:2;27100:6;27096:15;27089:33;26904:225;:::o;27135:366::-;27277:3;27298:67;27362:2;27357:3;27298:67;:::i;:::-;27291:74;;27374:93;27463:3;27374:93;:::i;:::-;27492:2;27487:3;27483:12;27476:19;;27135:366;;;:::o;27507:419::-;27673:4;27711:2;27700:9;27696:18;27688:26;;27760:9;27754:4;27750:20;27746:1;27735:9;27731:17;27724:47;27788:131;27914:4;27788:131;:::i;:::-;27780:139;;27507:419;;;:::o;27932:182::-;28072:34;28068:1;28060:6;28056:14;28049:58;27932:182;:::o;28120:366::-;28262:3;28283:67;28347:2;28342:3;28283:67;:::i;:::-;28276:74;;28359:93;28448:3;28359:93;:::i;:::-;28477:2;28472:3;28468:12;28461:19;;28120:366;;;:::o;28492:419::-;28658:4;28696:2;28685:9;28681:18;28673:26;;28745:9;28739:4;28735:20;28731:1;28720:9;28716:17;28709:47;28773:131;28899:4;28773:131;:::i;:::-;28765:139;;28492:419;;;:::o;28917:147::-;29018:11;29055:3;29040:18;;28917:147;;;;:::o;29070:398::-;29229:3;29250:83;29331:1;29326:3;29250:83;:::i;:::-;29243:90;;29342:93;29431:3;29342:93;:::i;:::-;29460:1;29455:3;29451:11;29444:18;;29070:398;;;:::o;29474:379::-;29658:3;29680:147;29823:3;29680:147;:::i;:::-;29673:154;;29844:3;29837:10;;29474:379;;;:::o;29859:166::-;29999:18;29995:1;29987:6;29983:14;29976:42;29859:166;:::o;30031:366::-;30173:3;30194:67;30258:2;30253:3;30194:67;:::i;:::-;30187:74;;30270:93;30359:3;30270:93;:::i;:::-;30388:2;30383:3;30379:12;30372:19;;30031:366;;;:::o;30403:419::-;30569:4;30607:2;30596:9;30592:18;30584:26;;30656:9;30650:4;30646:20;30642:1;30631:9;30627:17;30620:47;30684:131;30810:4;30684:131;:::i;:::-;30676:139;;30403:419;;;:::o;30828:181::-;30968:33;30964:1;30956:6;30952:14;30945:57;30828:181;:::o;31015:366::-;31157:3;31178:67;31242:2;31237:3;31178:67;:::i;:::-;31171:74;;31254:93;31343:3;31254:93;:::i;:::-;31372:2;31367:3;31363:12;31356:19;;31015:366;;;:::o;31387:419::-;31553:4;31591:2;31580:9;31576:18;31568:26;;31640:9;31634:4;31630:20;31626:1;31615:9;31611:17;31604:47;31668:131;31794:4;31668:131;:::i;:::-;31660:139;;31387:419;;;:::o;31812:98::-;31863:6;31897:5;31891:12;31881:22;;31812:98;;;:::o;31916:168::-;31999:11;32033:6;32028:3;32021:19;32073:4;32068:3;32064:14;32049:29;;31916:168;;;;:::o;32090:360::-;32176:3;32204:38;32236:5;32204:38;:::i;:::-;32258:70;32321:6;32316:3;32258:70;:::i;:::-;32251:77;;32337:52;32382:6;32377:3;32370:4;32363:5;32359:16;32337:52;:::i;:::-;32414:29;32436:6;32414:29;:::i;:::-;32409:3;32405:39;32398:46;;32180:270;32090:360;;;;:::o;32456:640::-;32651:4;32689:3;32678:9;32674:19;32666:27;;32703:71;32771:1;32760:9;32756:17;32747:6;32703:71;:::i;:::-;32784:72;32852:2;32841:9;32837:18;32828:6;32784:72;:::i;:::-;32866;32934:2;32923:9;32919:18;32910:6;32866:72;:::i;:::-;32985:9;32979:4;32975:20;32970:2;32959:9;32955:18;32948:48;33013:76;33084:4;33075:6;33013:76;:::i;:::-;33005:84;;32456:640;;;;;;;:::o;33102:141::-;33158:5;33189:6;33183:13;33174:22;;33205:32;33231:5;33205:32;:::i;:::-;33102:141;;;;:::o;33249:349::-;33318:6;33367:2;33355:9;33346:7;33342:23;33338:32;33335:119;;;33373:79;;:::i;:::-;33335:119;33493:1;33518:63;33573:7;33564:6;33553:9;33549:22;33518:63;:::i;:::-;33508:73;;33464:127;33249:349;;;;:::o

Swarm Source

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