ETH Price: $2,566.98 (+2.47%)

Token

Phalhalla (PHAL)
 

Overview

Max Total Supply

1,892 PHAL

Holders

143

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*snh48费沁源.eth
Balance
5 PHAL
0xce4BA677aEBcBB178376228801Ac62Bc9Bea6c21
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Phalhalla

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-13
*/

/**
__________.__           .__  .__           .__  .__          
\______   \  |__ _____  |  | |  |__ _____  |  | |  | _____   
 |     ___/  |  \\__  \ |  | |  |  \\__  \ |  | |  | \__  \  
 |    |   |   Y  \/ __ \|  |_|   Y  \/ __ \|  |_|  |__/ __ \_
 |____|   |___|  (____  /____/___|  (____  /____/____(____  /
               \/     \/          \/     \/               \/ 
*/


// 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.15;

contract Phalhalla is ERC721A, DefaultOperatorFilterer, Ownable {

    string public baseURI = "";
    uint256 public maxSupply = 9000;
    uint256 public maxPerWallet = 20;
    uint256 public currentPrice = 0.001 ether;
    bool public isSalesActive = false;

    mapping(address => uint) public addressToMinted;

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

    constructor () ERC721A("Phalhalla", "PHAL") {
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    // Reserve
    function reservePhalhalla(uint256 mintAmount) public onlyOwner {
        require(totalSupply() + mintAmount <= maxSupply, "NO MORE. PHUH?");
        
        _safeMint(msg.sender, mintAmount);
    }

    // Mint
    function mintPhalhalla(uint256 mintAmount) public payable callerIsUser {
        require(isSalesActive, "SALE NOT ACTIVE. PHUH?");
        require(addressToMinted[msg.sender] + mintAmount <= maxPerWallet, "TOO MANY. PHUH?");
        require(totalSupply() + mintAmount <= maxSupply, "NO MORE. PHUH?");

        require(msg.value >= (currentPrice * mintAmount), "MORE MONEY. PHUH?");
        
        addressToMinted[msg.sender] += mintAmount;

        _safeMint(msg.sender, mintAmount);
    }

    /////////////////////////////
    // CONTRACT MANAGEMENT 
    /////////////////////////////

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

    function setPrice(uint256 newPrice) external onlyOwner {
        currentPrice = newPrice;
    }

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

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

    function withdraw() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
	}
    
    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

    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":"","type":"address"}],"name":"addressToMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mintPhalhalla","outputs":[],"stateMutability":"payable","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":"reservePhalhalla","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":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806020016040528060008152506009908162000024919062000691565b50612328600a556014600b5566038d7ea4c68000600c556000600d60006101000a81548160ff0219169083151502179055503480156200006357600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600981526020017f5068616c68616c6c6100000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5048414c000000000000000000000000000000000000000000000000000000008152508160029081620000f8919062000691565b5080600390816200010a919062000691565b506200011b6200034060201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000318578015620001de576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001a4929190620007bd565b600060405180830381600087803b158015620001bf57600080fd5b505af1158015620001d4573d6000803e3d6000fd5b5050505062000317565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000298576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200025e929190620007bd565b600060405180830381600087803b1580156200027957600080fd5b505af11580156200028e573d6000803e3d6000fd5b5050505062000316565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002e19190620007ea565b600060405180830381600087803b158015620002fc57600080fd5b505af115801562000311573d6000803e3d6000fd5b505050505b5b5b50506200033a6200032e6200034960201b60201c565b6200035160201b60201c565b62000807565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200049957607f821691505b602082108103620004af57620004ae62000451565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004da565b620005258683620004da565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005726200056c62000566846200053d565b62000547565b6200053d565b9050919050565b6000819050919050565b6200058e8362000551565b620005a66200059d8262000579565b848454620004e7565b825550505050565b600090565b620005bd620005ae565b620005ca81848462000583565b505050565b5b81811015620005f257620005e6600082620005b3565b600181019050620005d0565b5050565b601f82111562000641576200060b81620004b5565b6200061684620004ca565b8101602085101562000626578190505b6200063e6200063585620004ca565b830182620005cf565b50505b505050565b600082821c905092915050565b6000620006666000198460080262000646565b1980831691505092915050565b600062000681838362000653565b9150826002028217905092915050565b6200069c8262000417565b67ffffffffffffffff811115620006b857620006b762000422565b5b620006c4825462000480565b620006d1828285620005f6565b600060209050601f831160018114620007095760008415620006f4578287015190505b62000700858262000673565b86555062000770565b601f1984166200071986620004b5565b60005b8281101562000743578489015182556001820191506020850194506020810190506200071c565b868310156200076357848901516200075f601f89168262000653565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007a58262000778565b9050919050565b620007b78162000798565b82525050565b6000604082019050620007d46000830185620007ac565b620007e36020830184620007ac565b9392505050565b6000602082019050620008016000830184620007ac565b92915050565b61341980620008176000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f75780639ec00c9511610095578063d5abeb0111610064578063d5abeb011461060d578063daa81cdd14610638578063e985e9c514610663578063f2fde38b146106a0576101cd565b80639ec00c951461054e578063a22cb4651461058b578063b88d4fde146105b4578063c87b56dd146105d0576101cd565b80638ee74f93116100d15780638ee74f93146104a657806391b7f5ed146104cf57806395d89b41146104f85780639d1b464a14610523576101cd565b8063715018a61461044d5780637d8966e4146104645780638da5cb5b1461047b576101cd565b806341f434341161016f57806356199ca41161013e57806356199ca41461038c5780636352211e146103a85780636c0360eb146103e557806370a0823114610410576101cd565b806341f43434146102f157806342842e0e1461031c578063453c23101461033857806355f804b314610363576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd1461029357806323b872dd146102be5780633ccfd60b146102da576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906124ad565b6106c9565b60405161020691906124f5565b60405180910390f35b34801561021b57600080fd5b5061022461075b565b60405161023191906125a9565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612601565b6107ed565b60405161026e919061266f565b60405180910390f35b610291600480360381019061028c91906126b6565b61086c565b005b34801561029f57600080fd5b506102a8610976565b6040516102b59190612705565b60405180910390f35b6102d860048036038101906102d39190612720565b61098d565b005b3480156102e657600080fd5b506102ef610add565b005b3480156102fd57600080fd5b50610306610b2e565b60405161031391906127d2565b60405180910390f35b61033660048036038101906103319190612720565b610b40565b005b34801561034457600080fd5b5061034d610c90565b60405161035a9190612705565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190612922565b610c96565b005b6103a660048036038101906103a19190612601565b610cb1565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612601565b610f07565b6040516103dc919061266f565b60405180910390f35b3480156103f157600080fd5b506103fa610f19565b60405161040791906125a9565b60405180910390f35b34801561041c57600080fd5b506104376004803603810190610432919061296b565b610fa7565b6040516104449190612705565b60405180910390f35b34801561045957600080fd5b5061046261105f565b005b34801561047057600080fd5b50610479611073565b005b34801561048757600080fd5b506104906110a7565b60405161049d919061266f565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612601565b6110d1565b005b3480156104db57600080fd5b506104f660048036038101906104f19190612601565b61113d565b005b34801561050457600080fd5b5061050d61114f565b60405161051a91906125a9565b60405180910390f35b34801561052f57600080fd5b506105386111e1565b6040516105459190612705565b60405180910390f35b34801561055a57600080fd5b506105756004803603810190610570919061296b565b6111e7565b6040516105829190612705565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad91906129c4565b6111ff565b005b6105ce60048036038101906105c99190612aa5565b611309565b005b3480156105dc57600080fd5b506105f760048036038101906105f29190612601565b61145c565b60405161060491906125a9565b60405180910390f35b34801561061957600080fd5b506106226114fa565b60405161062f9190612705565b60405180910390f35b34801561064457600080fd5b5061064d611500565b60405161065a91906124f5565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190612b28565b611513565b60405161069791906124f5565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c2919061296b565b6115a7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107545750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076a90612b97565b80601f016020809104026020016040519081016040528092919081815260200182805461079690612b97565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b60006107f88261162a565b61082e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610967576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108e4929190612bc8565b602060405180830381865afa158015610901573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109259190612c06565b61096657806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161095d919061266f565b60405180910390fd5b5b6109718383611689565b505050565b60006109806117cd565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610acb573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109ff576109fa8484846117d6565b610ad7565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a48929190612bc8565b602060405180830381865afa158015610a65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a899190612c06565b610aca57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ac1919061266f565b60405180910390fd5b5b610ad68484846117d6565b5b50505050565b610ae5611af8565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b2b573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c7e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bb257610bad848484611b76565b610c8a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bfb929190612bc8565b602060405180830381865afa158015610c18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3c9190612c06565b610c7d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c74919061266f565b60405180910390fd5b5b610c89848484611b76565b5b50505050565b600b5481565b610c9e611af8565b8060099081610cad9190612dd5565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1690612ef3565b60405180910390fd5b600d60009054906101000a900460ff16610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590612f5f565b60405180910390fd5b600b5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dbc9190612fae565b1115610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613050565b60405180910390fd5b600a5481610e09610976565b610e139190612fae565b1115610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b906130bc565b60405180910390fd5b80600c54610e6291906130dc565b341015610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90613182565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ef39190612fae565b92505081905550610f043382611b96565b50565b6000610f1282611bb4565b9050919050565b60098054610f2690612b97565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5290612b97565b8015610f9f5780601f10610f7457610100808354040283529160200191610f9f565b820191906000526020600020905b815481529060010190602001808311610f8257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611067611af8565b6110716000611c80565b565b61107b611af8565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110d9611af8565b600a54816110e5610976565b6110ef9190612fae565b1115611130576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611127906130bc565b60405180910390fd5b61113a3382611b96565b50565b611145611af8565b80600c8190555050565b60606003805461115e90612b97565b80601f016020809104026020016040519081016040528092919081815260200182805461118a90612b97565b80156111d75780601f106111ac576101008083540402835291602001916111d7565b820191906000526020600020905b8154815290600101906020018083116111ba57829003601f168201915b5050505050905090565b600c5481565b600e6020528060005260406000206000915090505481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112fa576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611277929190612bc8565b602060405180830381865afa158015611294573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b89190612c06565b6112f957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112f0919061266f565b60405180910390fd5b5b6113048383611d46565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611448573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361137c5761137785858585611e51565b611455565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016113c5929190612bc8565b602060405180830381865afa1580156113e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114069190612c06565b61144757336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161143e919061266f565b60405180910390fd5b5b61145485858585611e51565b5b5050505050565b60606114678261162a565b61149d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114a7611ec4565b905060008151036114c757604051806020016040528060008152506114f2565b806114d184611f56565b6040516020016114e29291906131de565b6040516020818303038152906040525b915050919050565b600a5481565b600d60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115af611af8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590613274565b60405180910390fd5b61162781611c80565b50565b6000816116356117cd565b11158015611644575060005482105b8015611682575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061169482610f07565b90508073ffffffffffffffffffffffffffffffffffffffff166116b5611fa6565b73ffffffffffffffffffffffffffffffffffffffff1614611718576116e1816116dc611fa6565b611513565b611717576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006117e182611bb4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611848576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061185484611fae565b9150915061186a8187611865611fa6565b611fd5565b6118b65761187f8661187a611fa6565b611513565b6118b5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361191c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119298686866001612019565b801561193457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611a02856119de88888761201f565b7c020000000000000000000000000000000000000000000000000000000017612047565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a885760006001850190506000600460008381526020019081526020016000205403611a86576000548114611a85578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611af08686866001612072565b505050505050565b611b00612078565b73ffffffffffffffffffffffffffffffffffffffff16611b1e6110a7565b73ffffffffffffffffffffffffffffffffffffffff1614611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b906132e0565b60405180910390fd5b565b611b9183838360405180602001604052806000815250611309565b505050565b611bb0828260405180602001604052806000815250612080565b5050565b60008082905080611bc36117cd565b11611c4957600054811015611c485760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c46575b60008103611c3c576004600083600190039350838152602001908152602001600020549050611c12565b8092505050611c7b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611d53611fa6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e00611fa6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e4591906124f5565b60405180910390a35050565b611e5c84848461098d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ebe57611e878484848461211d565b611ebd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611ed390612b97565b80601f0160208091040260200160405190810160405280929190818152602001828054611eff90612b97565b8015611f4c5780601f10611f2157610100808354040283529160200191611f4c565b820191906000526020600020905b815481529060010190602001808311611f2f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f9157600184039350600a81066030018453600a8104905080611f6f575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861203686868461226d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b61208a8383612276565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461211857600080549050600083820390505b6120ca600086838060010194508661211d565b612100576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120b757816000541461211557600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612143611fa6565b8786866040518563ffffffff1660e01b81526004016121659493929190613355565b6020604051808303816000875af19250505080156121a157506040513d601f19601f8201168201806040525081019061219e91906133b6565b60015b61221a573d80600081146121d1576040519150601f19603f3d011682016040523d82523d6000602084013e6121d6565b606091505b506000815103612212576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036122b6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122c36000848385612019565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061233a8361232b600086600061201f565b61233485612431565b17612047565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123db57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506123a0565b5060008203612416576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061242c6000848385612072565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61248a81612455565b811461249557600080fd5b50565b6000813590506124a781612481565b92915050565b6000602082840312156124c3576124c261244b565b5b60006124d184828501612498565b91505092915050565b60008115159050919050565b6124ef816124da565b82525050565b600060208201905061250a60008301846124e6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561254a57808201518184015260208101905061252f565b83811115612559576000848401525b50505050565b6000601f19601f8301169050919050565b600061257b82612510565b612585818561251b565b935061259581856020860161252c565b61259e8161255f565b840191505092915050565b600060208201905081810360008301526125c38184612570565b905092915050565b6000819050919050565b6125de816125cb565b81146125e957600080fd5b50565b6000813590506125fb816125d5565b92915050565b6000602082840312156126175761261661244b565b5b6000612625848285016125ec565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126598261262e565b9050919050565b6126698161264e565b82525050565b60006020820190506126846000830184612660565b92915050565b6126938161264e565b811461269e57600080fd5b50565b6000813590506126b08161268a565b92915050565b600080604083850312156126cd576126cc61244b565b5b60006126db858286016126a1565b92505060206126ec858286016125ec565b9150509250929050565b6126ff816125cb565b82525050565b600060208201905061271a60008301846126f6565b92915050565b6000806000606084860312156127395761273861244b565b5b6000612747868287016126a1565b9350506020612758868287016126a1565b9250506040612769868287016125ec565b9150509250925092565b6000819050919050565b600061279861279361278e8461262e565b612773565b61262e565b9050919050565b60006127aa8261277d565b9050919050565b60006127bc8261279f565b9050919050565b6127cc816127b1565b82525050565b60006020820190506127e760008301846127c3565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61282f8261255f565b810181811067ffffffffffffffff8211171561284e5761284d6127f7565b5b80604052505050565b6000612861612441565b905061286d8282612826565b919050565b600067ffffffffffffffff82111561288d5761288c6127f7565b5b6128968261255f565b9050602081019050919050565b82818337600083830152505050565b60006128c56128c084612872565b612857565b9050828152602081018484840111156128e1576128e06127f2565b5b6128ec8482856128a3565b509392505050565b600082601f830112612909576129086127ed565b5b81356129198482602086016128b2565b91505092915050565b6000602082840312156129385761293761244b565b5b600082013567ffffffffffffffff81111561295657612955612450565b5b612962848285016128f4565b91505092915050565b6000602082840312156129815761298061244b565b5b600061298f848285016126a1565b91505092915050565b6129a1816124da565b81146129ac57600080fd5b50565b6000813590506129be81612998565b92915050565b600080604083850312156129db576129da61244b565b5b60006129e9858286016126a1565b92505060206129fa858286016129af565b9150509250929050565b600067ffffffffffffffff821115612a1f57612a1e6127f7565b5b612a288261255f565b9050602081019050919050565b6000612a48612a4384612a04565b612857565b905082815260208101848484011115612a6457612a636127f2565b5b612a6f8482856128a3565b509392505050565b600082601f830112612a8c57612a8b6127ed565b5b8135612a9c848260208601612a35565b91505092915050565b60008060008060808587031215612abf57612abe61244b565b5b6000612acd878288016126a1565b9450506020612ade878288016126a1565b9350506040612aef878288016125ec565b925050606085013567ffffffffffffffff811115612b1057612b0f612450565b5b612b1c87828801612a77565b91505092959194509250565b60008060408385031215612b3f57612b3e61244b565b5b6000612b4d858286016126a1565b9250506020612b5e858286016126a1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612baf57607f821691505b602082108103612bc257612bc1612b68565b5b50919050565b6000604082019050612bdd6000830185612660565b612bea6020830184612660565b9392505050565b600081519050612c0081612998565b92915050565b600060208284031215612c1c57612c1b61244b565b5b6000612c2a84828501612bf1565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612c58565b612c9f8683612c58565b95508019841693508086168417925050509392505050565b6000612cd2612ccd612cc8846125cb565b612773565b6125cb565b9050919050565b6000819050919050565b612cec83612cb7565b612d00612cf882612cd9565b848454612c65565b825550505050565b600090565b612d15612d08565b612d20818484612ce3565b505050565b5b81811015612d4457612d39600082612d0d565b600181019050612d26565b5050565b601f821115612d8957612d5a81612c33565b612d6384612c48565b81016020851015612d72578190505b612d86612d7e85612c48565b830182612d25565b50505b505050565b600082821c905092915050565b6000612dac60001984600802612d8e565b1980831691505092915050565b6000612dc58383612d9b565b9150826002028217905092915050565b612dde82612510565b67ffffffffffffffff811115612df757612df66127f7565b5b612e018254612b97565b612e0c828285612d48565b600060209050601f831160018114612e3f5760008415612e2d578287015190505b612e378582612db9565b865550612e9f565b601f198416612e4d86612c33565b60005b82811015612e7557848901518255600182019150602085019450602081019050612e50565b86831015612e925784890151612e8e601f891682612d9b565b8355505b6001600288020188555050505b505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612edd601e8361251b565b9150612ee882612ea7565b602082019050919050565b60006020820190508181036000830152612f0c81612ed0565b9050919050565b7f53414c45204e4f54204143544956452e20504855483f00000000000000000000600082015250565b6000612f4960168361251b565b9150612f5482612f13565b602082019050919050565b60006020820190508181036000830152612f7881612f3c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fb9826125cb565b9150612fc4836125cb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ff957612ff8612f7f565b5b828201905092915050565b7f544f4f204d414e592e20504855483f0000000000000000000000000000000000600082015250565b600061303a600f8361251b565b915061304582613004565b602082019050919050565b600060208201905081810360008301526130698161302d565b9050919050565b7f4e4f204d4f52452e20504855483f000000000000000000000000000000000000600082015250565b60006130a6600e8361251b565b91506130b182613070565b602082019050919050565b600060208201905081810360008301526130d581613099565b9050919050565b60006130e7826125cb565b91506130f2836125cb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561312b5761312a612f7f565b5b828202905092915050565b7f4d4f5245204d4f4e45592e20504855483f000000000000000000000000000000600082015250565b600061316c60118361251b565b915061317782613136565b602082019050919050565b6000602082019050818103600083015261319b8161315f565b9050919050565b600081905092915050565b60006131b882612510565b6131c281856131a2565b93506131d281856020860161252c565b80840191505092915050565b60006131ea82856131ad565b91506131f682846131ad565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061325e60268361251b565b915061326982613202565b604082019050919050565b6000602082019050818103600083015261328d81613251565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132ca60208361251b565b91506132d582613294565b602082019050919050565b600060208201905081810360008301526132f9816132bd565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061332782613300565b613331818561330b565b935061334181856020860161252c565b61334a8161255f565b840191505092915050565b600060808201905061336a6000830187612660565b6133776020830186612660565b61338460408301856126f6565b8181036060830152613396818461331c565b905095945050505050565b6000815190506133b081612481565b92915050565b6000602082840312156133cc576133cb61244b565b5b60006133da848285016133a1565b9150509291505056fea264697066735822122026a61b7177d9780780c00e933b4eeea6f2e7ffdca9963649f905fee2b9b1e30064736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f75780639ec00c9511610095578063d5abeb0111610064578063d5abeb011461060d578063daa81cdd14610638578063e985e9c514610663578063f2fde38b146106a0576101cd565b80639ec00c951461054e578063a22cb4651461058b578063b88d4fde146105b4578063c87b56dd146105d0576101cd565b80638ee74f93116100d15780638ee74f93146104a657806391b7f5ed146104cf57806395d89b41146104f85780639d1b464a14610523576101cd565b8063715018a61461044d5780637d8966e4146104645780638da5cb5b1461047b576101cd565b806341f434341161016f57806356199ca41161013e57806356199ca41461038c5780636352211e146103a85780636c0360eb146103e557806370a0823114610410576101cd565b806341f43434146102f157806342842e0e1461031c578063453c23101461033857806355f804b314610363576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd1461029357806323b872dd146102be5780633ccfd60b146102da576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906124ad565b6106c9565b60405161020691906124f5565b60405180910390f35b34801561021b57600080fd5b5061022461075b565b60405161023191906125a9565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612601565b6107ed565b60405161026e919061266f565b60405180910390f35b610291600480360381019061028c91906126b6565b61086c565b005b34801561029f57600080fd5b506102a8610976565b6040516102b59190612705565b60405180910390f35b6102d860048036038101906102d39190612720565b61098d565b005b3480156102e657600080fd5b506102ef610add565b005b3480156102fd57600080fd5b50610306610b2e565b60405161031391906127d2565b60405180910390f35b61033660048036038101906103319190612720565b610b40565b005b34801561034457600080fd5b5061034d610c90565b60405161035a9190612705565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190612922565b610c96565b005b6103a660048036038101906103a19190612601565b610cb1565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612601565b610f07565b6040516103dc919061266f565b60405180910390f35b3480156103f157600080fd5b506103fa610f19565b60405161040791906125a9565b60405180910390f35b34801561041c57600080fd5b506104376004803603810190610432919061296b565b610fa7565b6040516104449190612705565b60405180910390f35b34801561045957600080fd5b5061046261105f565b005b34801561047057600080fd5b50610479611073565b005b34801561048757600080fd5b506104906110a7565b60405161049d919061266f565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612601565b6110d1565b005b3480156104db57600080fd5b506104f660048036038101906104f19190612601565b61113d565b005b34801561050457600080fd5b5061050d61114f565b60405161051a91906125a9565b60405180910390f35b34801561052f57600080fd5b506105386111e1565b6040516105459190612705565b60405180910390f35b34801561055a57600080fd5b506105756004803603810190610570919061296b565b6111e7565b6040516105829190612705565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad91906129c4565b6111ff565b005b6105ce60048036038101906105c99190612aa5565b611309565b005b3480156105dc57600080fd5b506105f760048036038101906105f29190612601565b61145c565b60405161060491906125a9565b60405180910390f35b34801561061957600080fd5b506106226114fa565b60405161062f9190612705565b60405180910390f35b34801561064457600080fd5b5061064d611500565b60405161065a91906124f5565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190612b28565b611513565b60405161069791906124f5565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c2919061296b565b6115a7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107545750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076a90612b97565b80601f016020809104026020016040519081016040528092919081815260200182805461079690612b97565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b60006107f88261162a565b61082e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610967576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108e4929190612bc8565b602060405180830381865afa158015610901573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109259190612c06565b61096657806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161095d919061266f565b60405180910390fd5b5b6109718383611689565b505050565b60006109806117cd565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610acb573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109ff576109fa8484846117d6565b610ad7565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a48929190612bc8565b602060405180830381865afa158015610a65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a899190612c06565b610aca57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ac1919061266f565b60405180910390fd5b5b610ad68484846117d6565b5b50505050565b610ae5611af8565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b2b573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c7e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bb257610bad848484611b76565b610c8a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bfb929190612bc8565b602060405180830381865afa158015610c18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3c9190612c06565b610c7d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c74919061266f565b60405180910390fd5b5b610c89848484611b76565b5b50505050565b600b5481565b610c9e611af8565b8060099081610cad9190612dd5565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1690612ef3565b60405180910390fd5b600d60009054906101000a900460ff16610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590612f5f565b60405180910390fd5b600b5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dbc9190612fae565b1115610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613050565b60405180910390fd5b600a5481610e09610976565b610e139190612fae565b1115610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b906130bc565b60405180910390fd5b80600c54610e6291906130dc565b341015610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90613182565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ef39190612fae565b92505081905550610f043382611b96565b50565b6000610f1282611bb4565b9050919050565b60098054610f2690612b97565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5290612b97565b8015610f9f5780601f10610f7457610100808354040283529160200191610f9f565b820191906000526020600020905b815481529060010190602001808311610f8257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611067611af8565b6110716000611c80565b565b61107b611af8565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110d9611af8565b600a54816110e5610976565b6110ef9190612fae565b1115611130576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611127906130bc565b60405180910390fd5b61113a3382611b96565b50565b611145611af8565b80600c8190555050565b60606003805461115e90612b97565b80601f016020809104026020016040519081016040528092919081815260200182805461118a90612b97565b80156111d75780601f106111ac576101008083540402835291602001916111d7565b820191906000526020600020905b8154815290600101906020018083116111ba57829003601f168201915b5050505050905090565b600c5481565b600e6020528060005260406000206000915090505481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112fa576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611277929190612bc8565b602060405180830381865afa158015611294573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b89190612c06565b6112f957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112f0919061266f565b60405180910390fd5b5b6113048383611d46565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611448573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361137c5761137785858585611e51565b611455565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016113c5929190612bc8565b602060405180830381865afa1580156113e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114069190612c06565b61144757336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161143e919061266f565b60405180910390fd5b5b61145485858585611e51565b5b5050505050565b60606114678261162a565b61149d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114a7611ec4565b905060008151036114c757604051806020016040528060008152506114f2565b806114d184611f56565b6040516020016114e29291906131de565b6040516020818303038152906040525b915050919050565b600a5481565b600d60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115af611af8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590613274565b60405180910390fd5b61162781611c80565b50565b6000816116356117cd565b11158015611644575060005482105b8015611682575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061169482610f07565b90508073ffffffffffffffffffffffffffffffffffffffff166116b5611fa6565b73ffffffffffffffffffffffffffffffffffffffff1614611718576116e1816116dc611fa6565b611513565b611717576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006117e182611bb4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611848576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061185484611fae565b9150915061186a8187611865611fa6565b611fd5565b6118b65761187f8661187a611fa6565b611513565b6118b5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361191c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119298686866001612019565b801561193457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611a02856119de88888761201f565b7c020000000000000000000000000000000000000000000000000000000017612047565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a885760006001850190506000600460008381526020019081526020016000205403611a86576000548114611a85578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611af08686866001612072565b505050505050565b611b00612078565b73ffffffffffffffffffffffffffffffffffffffff16611b1e6110a7565b73ffffffffffffffffffffffffffffffffffffffff1614611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b906132e0565b60405180910390fd5b565b611b9183838360405180602001604052806000815250611309565b505050565b611bb0828260405180602001604052806000815250612080565b5050565b60008082905080611bc36117cd565b11611c4957600054811015611c485760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c46575b60008103611c3c576004600083600190039350838152602001908152602001600020549050611c12565b8092505050611c7b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611d53611fa6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e00611fa6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e4591906124f5565b60405180910390a35050565b611e5c84848461098d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ebe57611e878484848461211d565b611ebd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611ed390612b97565b80601f0160208091040260200160405190810160405280929190818152602001828054611eff90612b97565b8015611f4c5780601f10611f2157610100808354040283529160200191611f4c565b820191906000526020600020905b815481529060010190602001808311611f2f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f9157600184039350600a81066030018453600a8104905080611f6f575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861203686868461226d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b61208a8383612276565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461211857600080549050600083820390505b6120ca600086838060010194508661211d565b612100576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120b757816000541461211557600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612143611fa6565b8786866040518563ffffffff1660e01b81526004016121659493929190613355565b6020604051808303816000875af19250505080156121a157506040513d601f19601f8201168201806040525081019061219e91906133b6565b60015b61221a573d80600081146121d1576040519150601f19603f3d011682016040523d82523d6000602084013e6121d6565b606091505b506000815103612212576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036122b6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122c36000848385612019565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061233a8361232b600086600061201f565b61233485612431565b17612047565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123db57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506123a0565b5060008203612416576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061242c6000848385612072565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61248a81612455565b811461249557600080fd5b50565b6000813590506124a781612481565b92915050565b6000602082840312156124c3576124c261244b565b5b60006124d184828501612498565b91505092915050565b60008115159050919050565b6124ef816124da565b82525050565b600060208201905061250a60008301846124e6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561254a57808201518184015260208101905061252f565b83811115612559576000848401525b50505050565b6000601f19601f8301169050919050565b600061257b82612510565b612585818561251b565b935061259581856020860161252c565b61259e8161255f565b840191505092915050565b600060208201905081810360008301526125c38184612570565b905092915050565b6000819050919050565b6125de816125cb565b81146125e957600080fd5b50565b6000813590506125fb816125d5565b92915050565b6000602082840312156126175761261661244b565b5b6000612625848285016125ec565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126598261262e565b9050919050565b6126698161264e565b82525050565b60006020820190506126846000830184612660565b92915050565b6126938161264e565b811461269e57600080fd5b50565b6000813590506126b08161268a565b92915050565b600080604083850312156126cd576126cc61244b565b5b60006126db858286016126a1565b92505060206126ec858286016125ec565b9150509250929050565b6126ff816125cb565b82525050565b600060208201905061271a60008301846126f6565b92915050565b6000806000606084860312156127395761273861244b565b5b6000612747868287016126a1565b9350506020612758868287016126a1565b9250506040612769868287016125ec565b9150509250925092565b6000819050919050565b600061279861279361278e8461262e565b612773565b61262e565b9050919050565b60006127aa8261277d565b9050919050565b60006127bc8261279f565b9050919050565b6127cc816127b1565b82525050565b60006020820190506127e760008301846127c3565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61282f8261255f565b810181811067ffffffffffffffff8211171561284e5761284d6127f7565b5b80604052505050565b6000612861612441565b905061286d8282612826565b919050565b600067ffffffffffffffff82111561288d5761288c6127f7565b5b6128968261255f565b9050602081019050919050565b82818337600083830152505050565b60006128c56128c084612872565b612857565b9050828152602081018484840111156128e1576128e06127f2565b5b6128ec8482856128a3565b509392505050565b600082601f830112612909576129086127ed565b5b81356129198482602086016128b2565b91505092915050565b6000602082840312156129385761293761244b565b5b600082013567ffffffffffffffff81111561295657612955612450565b5b612962848285016128f4565b91505092915050565b6000602082840312156129815761298061244b565b5b600061298f848285016126a1565b91505092915050565b6129a1816124da565b81146129ac57600080fd5b50565b6000813590506129be81612998565b92915050565b600080604083850312156129db576129da61244b565b5b60006129e9858286016126a1565b92505060206129fa858286016129af565b9150509250929050565b600067ffffffffffffffff821115612a1f57612a1e6127f7565b5b612a288261255f565b9050602081019050919050565b6000612a48612a4384612a04565b612857565b905082815260208101848484011115612a6457612a636127f2565b5b612a6f8482856128a3565b509392505050565b600082601f830112612a8c57612a8b6127ed565b5b8135612a9c848260208601612a35565b91505092915050565b60008060008060808587031215612abf57612abe61244b565b5b6000612acd878288016126a1565b9450506020612ade878288016126a1565b9350506040612aef878288016125ec565b925050606085013567ffffffffffffffff811115612b1057612b0f612450565b5b612b1c87828801612a77565b91505092959194509250565b60008060408385031215612b3f57612b3e61244b565b5b6000612b4d858286016126a1565b9250506020612b5e858286016126a1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612baf57607f821691505b602082108103612bc257612bc1612b68565b5b50919050565b6000604082019050612bdd6000830185612660565b612bea6020830184612660565b9392505050565b600081519050612c0081612998565b92915050565b600060208284031215612c1c57612c1b61244b565b5b6000612c2a84828501612bf1565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612c58565b612c9f8683612c58565b95508019841693508086168417925050509392505050565b6000612cd2612ccd612cc8846125cb565b612773565b6125cb565b9050919050565b6000819050919050565b612cec83612cb7565b612d00612cf882612cd9565b848454612c65565b825550505050565b600090565b612d15612d08565b612d20818484612ce3565b505050565b5b81811015612d4457612d39600082612d0d565b600181019050612d26565b5050565b601f821115612d8957612d5a81612c33565b612d6384612c48565b81016020851015612d72578190505b612d86612d7e85612c48565b830182612d25565b50505b505050565b600082821c905092915050565b6000612dac60001984600802612d8e565b1980831691505092915050565b6000612dc58383612d9b565b9150826002028217905092915050565b612dde82612510565b67ffffffffffffffff811115612df757612df66127f7565b5b612e018254612b97565b612e0c828285612d48565b600060209050601f831160018114612e3f5760008415612e2d578287015190505b612e378582612db9565b865550612e9f565b601f198416612e4d86612c33565b60005b82811015612e7557848901518255600182019150602085019450602081019050612e50565b86831015612e925784890151612e8e601f891682612d9b565b8355505b6001600288020188555050505b505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612edd601e8361251b565b9150612ee882612ea7565b602082019050919050565b60006020820190508181036000830152612f0c81612ed0565b9050919050565b7f53414c45204e4f54204143544956452e20504855483f00000000000000000000600082015250565b6000612f4960168361251b565b9150612f5482612f13565b602082019050919050565b60006020820190508181036000830152612f7881612f3c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fb9826125cb565b9150612fc4836125cb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ff957612ff8612f7f565b5b828201905092915050565b7f544f4f204d414e592e20504855483f0000000000000000000000000000000000600082015250565b600061303a600f8361251b565b915061304582613004565b602082019050919050565b600060208201905081810360008301526130698161302d565b9050919050565b7f4e4f204d4f52452e20504855483f000000000000000000000000000000000000600082015250565b60006130a6600e8361251b565b91506130b182613070565b602082019050919050565b600060208201905081810360008301526130d581613099565b9050919050565b60006130e7826125cb565b91506130f2836125cb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561312b5761312a612f7f565b5b828202905092915050565b7f4d4f5245204d4f4e45592e20504855483f000000000000000000000000000000600082015250565b600061316c60118361251b565b915061317782613136565b602082019050919050565b6000602082019050818103600083015261319b8161315f565b9050919050565b600081905092915050565b60006131b882612510565b6131c281856131a2565b93506131d281856020860161252c565b80840191505092915050565b60006131ea82856131ad565b91506131f682846131ad565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061325e60268361251b565b915061326982613202565b604082019050919050565b6000602082019050818103600083015261328d81613251565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132ca60208361251b565b91506132d582613294565b602082019050919050565b600060208201905081810360008301526132f9816132bd565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061332782613300565b613331818561330b565b935061334181856020860161252c565b61334a8161255f565b840191505092915050565b600060808201905061336a6000830187612660565b6133776020830186612660565b61338460408301856126f6565b8181036060830152613396818461331c565b905095945050505050565b6000815190506133b081612481565b92915050565b6000602082840312156133cc576133cb61244b565b5b60006133da848285016133a1565b9150509291505056fea264697066735822122026a61b7177d9780780c00e933b4eeea6f2e7ffdca9963649f905fee2b9b1e30064736f6c634300080f0033

Deployed Bytecode Sourcemap

64173:3090:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24575:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25477:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31968:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66476:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21228:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66649:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66077:98;;;;;;;;;;;;;:::i;:::-;;3362:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66828:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64317:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65968:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65039:501;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26870:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64246:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22412:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63328:103;;;;;;;;;;;;;:::i;:::-;;65649:90;;;;;;;;;;;;;:::i;:::-;;62680:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64816:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65747:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25653:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64356:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64446:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66292:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67015:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25863:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64279:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64404:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32917:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63586:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24575:639;24660:4;24999:10;24984:25;;:11;:25;;;;:102;;;;25076:10;25061:25;;:11;:25;;;;24984:102;:179;;;;25153:10;25138:25;;:11;:25;;;;24984:179;24964:199;;24575:639;;;:::o;25477:100::-;25531:13;25564:5;25557:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25477:100;:::o;31968:218::-;32044:7;32069:16;32077:7;32069;:16::i;:::-;32064:64;;32094:34;;;;;;;;;;;;;;32064:64;32148:15;:24;32164:7;32148:24;;;;;;;;;;;:30;;;;;;;;;;;;32141:37;;31968:218;;;:::o;66476:165::-;66580:8;5404:1;3462:42;5356:45;;;:49;5352:225;;;3462:42;5427;;;5478:4;5485:8;5427:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5422:144;;5541:8;5522:28;;;;;;;;;;;:::i;:::-;;;;;;;;5422:144;5352:225;66601:32:::1;66615:8;66625:7;66601:13;:32::i;:::-;66476:165:::0;;;:::o;21228:323::-;21289:7;21517:15;:13;:15::i;:::-;21502:12;;21486:13;;:28;:46;21479:53;;21228:323;:::o;66649:171::-;66758:4;4658:1;3462:42;4610:45;;;:49;4606:539;;;4899:10;4891:18;;:4;:18;;;4887:85;;66775:37:::1;66794:4;66800:2;66804:7;66775:18;:37::i;:::-;4950:7:::0;;4887:85;3462:42;4991;;;5042:4;5049:10;4991:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4986:148;;5107:10;5088:30;;;;;;;;;;;:::i;:::-;;;;;;;;4986:148;4606:539;66775:37:::1;66794:4;66800:2;66804:7;66775:18;:37::i;:::-;66649:171:::0;;;;;:::o;66077:98::-;62566:13;:11;:13::i;:::-;66127:10:::1;66119:28;;:51;66148:21;66119:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66077:98::o:0;3362:143::-;3462:42;3362:143;:::o;66828:179::-;66941:4;4658:1;3462:42;4610:45;;;:49;4606:539;;;4899:10;4891:18;;:4;:18;;;4887:85;;66958:41:::1;66981:4;66987:2;66991:7;66958:22;:41::i;:::-;4950:7:::0;;4887:85;3462:42;4991;;;5042:4;5049:10;4991:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4986:148;;5107:10;5088:30;;;;;;;;;;;:::i;:::-;;;;;;;;4986:148;4606:539;66958:41:::1;66981:4;66987:2;66991:7;66958:22;:41::i;:::-;66828:179:::0;;;;;:::o;64317:32::-;;;;:::o;65968:100::-;62566:13;:11;:13::i;:::-;66052:8:::1;66042:7;:18;;;;;;:::i;:::-;;65968:100:::0;:::o;65039:501::-;64558:10;64545:23;;:9;:23;;;64537:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;65129:13:::1;;;;;;;;;;;65121:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;65232:12;;65218:10;65188:15;:27;65204:10;65188:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:56;;65180:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;65313:9;;65299:10;65283:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:39;;65275:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;65391:10;65376:12;;:25;;;;:::i;:::-;65362:9;:40;;65354:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;65476:10;65445:15;:27;65461:10;65445:27;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;65499:33;65509:10;65521;65499:9;:33::i;:::-;65039:501:::0;:::o;26870:152::-;26942:7;26985:27;27004:7;26985:18;:27::i;:::-;26962:52;;26870:152;;;:::o;64246:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22412:233::-;22484:7;22525:1;22508:19;;:5;:19;;;22504:60;;22536:28;;;;;;;;;;;;;;22504:60;16571:13;22582:18;:25;22601:5;22582:25;;;;;;;;;;;;;;;;:55;22575:62;;22412:233;;;:::o;63328:103::-;62566:13;:11;:13::i;:::-;63393:30:::1;63420:1;63393:18;:30::i;:::-;63328:103::o:0;65649:90::-;62566:13;:11;:13::i;:::-;65718::::1;;;;;;;;;;;65717:14;65701:13;;:30;;;;;;;;;;;;;;;;;;65649:90::o:0;62680:87::-;62726:7;62753:6;;;;;;;;;;;62746:13;;62680:87;:::o;64816:202::-;62566:13;:11;:13::i;:::-;64928:9:::1;;64914:10;64898:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:39;;64890:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;64977:33;64987:10;64999;64977:9;:33::i;:::-;64816:202:::0;:::o;65747:97::-;62566:13;:11;:13::i;:::-;65828:8:::1;65813:12;:23;;;;65747:97:::0;:::o;25653:104::-;25709:13;25742:7;25735:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25653:104;:::o;64356:41::-;;;;:::o;64446:47::-;;;;;;;;;;;;;;;;;:::o;66292:176::-;66396:8;5404:1;3462:42;5356:45;;;:49;5352:225;;;3462:42;5427;;;5478:4;5485:8;5427:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5422:144;;5541:8;5522:28;;;;;;;;;;;:::i;:::-;;;;;;;;5422:144;5352:225;66417:43:::1;66441:8;66451;66417:23;:43::i;:::-;66292:176:::0;;;:::o;67015:245::-;67183:4;4658:1;3462:42;4610:45;;;:49;4606:539;;;4899:10;4891:18;;:4;:18;;;4887:85;;67205:47:::1;67228:4;67234:2;67238:7;67247:4;67205:22;:47::i;:::-;4950:7:::0;;4887:85;3462:42;4991;;;5042:4;5049:10;4991:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4986:148;;5107:10;5088:30;;;;;;;;;;;:::i;:::-;;;;;;;;4986:148;4606:539;67205:47:::1;67228:4;67234:2;67238:7;67247:4;67205:22;:47::i;:::-;67015:245:::0;;;;;;:::o;25863:318::-;25936:13;25967:16;25975:7;25967;:16::i;:::-;25962:59;;25992:29;;;;;;;;;;;;;;25962:59;26034:21;26058:10;:8;:10::i;:::-;26034:34;;26111:1;26092:7;26086:21;:26;:87;;;;;;;;;;;;;;;;;26139:7;26148:18;26158:7;26148:9;:18::i;:::-;26122:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26086:87;26079:94;;;25863:318;;;:::o;64279:31::-;;;;:::o;64404:33::-;;;;;;;;;;;;;:::o;32917:164::-;33014:4;33038:18;:25;33057:5;33038:25;;;;;;;;;;;;;;;:35;33064:8;33038:35;;;;;;;;;;;;;;;;;;;;;;;;;33031:42;;32917:164;;;;:::o;63586:201::-;62566:13;:11;:13::i;:::-;63695:1:::1;63675:22;;:8;:22;;::::0;63667:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63751:28;63770:8;63751:18;:28::i;:::-;63586:201:::0;:::o;33339:282::-;33404:4;33460:7;33441:15;:13;:15::i;:::-;:26;;:66;;;;;33494:13;;33484:7;:23;33441:66;:153;;;;;33593:1;17347:8;33545:17;:26;33563:7;33545:26;;;;;;;;;;;;:44;:49;33441:153;33421:173;;33339:282;;;:::o;31401:408::-;31490:13;31506:16;31514:7;31506;:16::i;:::-;31490:32;;31562:5;31539:28;;:19;:17;:19::i;:::-;:28;;;31535:175;;31587:44;31604:5;31611:19;:17;:19::i;:::-;31587:16;:44::i;:::-;31582:128;;31659:35;;;;;;;;;;;;;;31582:128;31535:175;31755:2;31722:15;:24;31738:7;31722:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31793:7;31789:2;31773:28;;31782:5;31773:28;;;;;;;;;;;;31479:330;31401:408;;:::o;64691:101::-;64756:7;64783:1;64776:8;;64691:101;:::o;35607:2825::-;35749:27;35779;35798:7;35779:18;:27::i;:::-;35749:57;;35864:4;35823:45;;35839:19;35823:45;;;35819:86;;35877:28;;;;;;;;;;;;;;35819:86;35919:27;35948:23;35975:35;36002:7;35975:26;:35::i;:::-;35918:92;;;;36110:68;36135:15;36152:4;36158:19;:17;:19::i;:::-;36110:24;:68::i;:::-;36105:180;;36198:43;36215:4;36221:19;:17;:19::i;:::-;36198:16;:43::i;:::-;36193:92;;36250:35;;;;;;;;;;;;;;36193:92;36105:180;36316:1;36302:16;;:2;:16;;;36298:52;;36327:23;;;;;;;;;;;;;;36298:52;36363:43;36385:4;36391:2;36395:7;36404:1;36363:21;:43::i;:::-;36499:15;36496:160;;;36639:1;36618:19;36611:30;36496:160;37036:18;:24;37055:4;37036:24;;;;;;;;;;;;;;;;37034:26;;;;;;;;;;;;37105:18;:22;37124:2;37105:22;;;;;;;;;;;;;;;;37103:24;;;;;;;;;;;37427:146;37464:2;37513:45;37528:4;37534:2;37538:19;37513:14;:45::i;:::-;17627:8;37485:73;37427:18;:146::i;:::-;37398:17;:26;37416:7;37398:26;;;;;;;;;;;:175;;;;37744:1;17627:8;37693:19;:47;:52;37689:627;;37766:19;37798:1;37788:7;:11;37766:33;;37955:1;37921:17;:30;37939:11;37921:30;;;;;;;;;;;;:35;37917:384;;38059:13;;38044:11;:28;38040:242;;38239:19;38206:17;:30;38224:11;38206:30;;;;;;;;;;;:52;;;;38040:242;37917:384;37747:569;37689:627;38363:7;38359:2;38344:27;;38353:4;38344:27;;;;;;;;;;;;38382:42;38403:4;38409:2;38413:7;38422:1;38382:20;:42::i;:::-;35738:2694;;;35607:2825;;;:::o;62845:132::-;62920:12;:10;:12::i;:::-;62909:23;;:7;:5;:7::i;:::-;:23;;;62901:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62845:132::o;38528:193::-;38674:39;38691:4;38697:2;38701:7;38674:39;;;;;;;;;;;;:16;:39::i;:::-;38528:193;;;:::o;49479:112::-;49556:27;49566:2;49570:8;49556:27;;;;;;;;;;;;:9;:27::i;:::-;49479:112;;:::o;28025:1275::-;28092:7;28112:12;28127:7;28112:22;;28195:4;28176:15;:13;:15::i;:::-;:23;28172:1061;;28229:13;;28222:4;:20;28218:1015;;;28267:14;28284:17;:23;28302:4;28284:23;;;;;;;;;;;;28267:40;;28401:1;17347:8;28373:6;:24;:29;28369:845;;29038:113;29055:1;29045:6;:11;29038:113;;29098:17;:25;29116:6;;;;;;;29098:25;;;;;;;;;;;;29089:34;;29038:113;;;29184:6;29177:13;;;;;;28369:845;28244:989;28218:1015;28172:1061;29261:31;;;;;;;;;;;;;;28025:1275;;;;:::o;63947:191::-;64021:16;64040:6;;;;;;;;;;;64021:25;;64066:8;64057:6;;:17;;;;;;;;;;;;;;;;;;64121:8;64090:40;;64111:8;64090:40;;;;;;;;;;;;64010:128;63947:191;:::o;32526:234::-;32673:8;32621:18;:39;32640:19;:17;:19::i;:::-;32621:39;;;;;;;;;;;;;;;:49;32661:8;32621:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32733:8;32697:55;;32712:19;:17;:19::i;:::-;32697:55;;;32743:8;32697:55;;;;;;:::i;:::-;;;;;;;;32526:234;;:::o;39319:407::-;39494:31;39507:4;39513:2;39517:7;39494:12;:31::i;:::-;39558:1;39540:2;:14;;;:19;39536:183;;39579:56;39610:4;39616:2;39620:7;39629:5;39579:30;:56::i;:::-;39574:145;;39663:40;;;;;;;;;;;;;;39574:145;39536:183;39319:407;;;;:::o;65852:108::-;65912:13;65945:7;65938:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65852:108;:::o;55854:1745::-;55919:17;56353:4;56346;56340:11;56336:22;56445:1;56439:4;56432:15;56520:4;56517:1;56513:12;56506:19;;56602:1;56597:3;56590:14;56706:3;56945:5;56927:428;56953:1;56927:428;;;56993:1;56988:3;56984:11;56977:18;;57164:2;57158:4;57154:13;57150:2;57146:22;57141:3;57133:36;57258:2;57252:4;57248:13;57240:21;;57325:4;56927:428;57315:25;56927:428;56931:21;57394:3;57389;57385:13;57509:4;57504:3;57500:14;57493:21;;57574:6;57569:3;57562:19;55958:1634;;;55854:1745;;;:::o;55647:105::-;55707:7;55734:10;55727:17;;55647:105;:::o;34502:485::-;34604:27;34633:23;34674:38;34715:15;:24;34731:7;34715:24;;;;;;;;;;;34674:65;;34892:18;34869:41;;34949:19;34943:26;34924:45;;34854:126;34502:485;;;:::o;33730:659::-;33879:11;34044:16;34037:5;34033:28;34024:37;;34204:16;34193:9;34189:32;34176:45;;34354:15;34343:9;34340:30;34332:5;34321:9;34318:20;34315:56;34305:66;;33730:659;;;;;:::o;40388:159::-;;;;;:::o;54956:311::-;55091:7;55111:16;17751:3;55137:19;:41;;55111:68;;17751:3;55205:31;55216:4;55222:2;55226:9;55205:10;:31::i;:::-;55197:40;;:62;;55190:69;;;54956:311;;;;;:::o;29848:450::-;29928:14;30096:16;30089:5;30085:28;30076:37;;30273:5;30259:11;30234:23;30230:41;30227:52;30220:5;30217:63;30207:73;;29848:450;;;;:::o;41212:158::-;;;;;:::o;61231:98::-;61284:7;61311:10;61304:17;;61231:98;:::o;48706:689::-;48837:19;48843:2;48847:8;48837:5;:19::i;:::-;48916:1;48898:2;:14;;;:19;48894:483;;48938:11;48952:13;;48938:27;;48984:13;49006:8;49000:3;:14;48984:30;;49033:233;49064:62;49103:1;49107:2;49111:7;;;;;;49120:5;49064:30;:62::i;:::-;49059:167;;49162:40;;;;;;;;;;;;;;49059:167;49261:3;49253:5;:11;49033:233;;49348:3;49331:13;;:20;49327:34;;49353:8;;;49327:34;48919:458;;48894:483;48706:689;;;:::o;41810:716::-;41973:4;42019:2;41994:45;;;42040:19;:17;:19::i;:::-;42061:4;42067:7;42076:5;41994:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41990:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42294:1;42277:6;:13;:18;42273:235;;42323:40;;;;;;;;;;;;;;42273:235;42466:6;42460:13;42451:6;42447:2;42443:15;42436:38;41990:529;42163:54;;;42153:64;;;:6;:64;;;;42146:71;;;41810:716;;;;;;:::o;54657:147::-;54794:6;54657:147;;;;;:::o;42988:2966::-;43061:20;43084:13;;43061:36;;43124:1;43112:8;:13;43108:44;;43134:18;;;;;;;;;;;;;;43108:44;43165:61;43195:1;43199:2;43203:12;43217:8;43165:21;:61::i;:::-;43709:1;16709:2;43679:1;:26;;43678:32;43666:8;:45;43640:18;:22;43659:2;43640:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43988:139;44025:2;44079:33;44102:1;44106:2;44110:1;44079:14;:33::i;:::-;44046:30;44067:8;44046:20;:30::i;:::-;:66;43988:18;:139::i;:::-;43954:17;:31;43972:12;43954:31;;;;;;;;;;;:173;;;;44144:16;44175:11;44204:8;44189:12;:23;44175:37;;44725:16;44721:2;44717:25;44705:37;;45097:12;45057:8;45016:1;44954:25;44895:1;44834;44807:335;45468:1;45454:12;45450:20;45408:346;45509:3;45500:7;45497:16;45408:346;;45727:7;45717:8;45714:1;45687:25;45684:1;45681;45676:59;45562:1;45553:7;45549:15;45538:26;;45408:346;;;45412:77;45799:1;45787:8;:13;45783:45;;45809:19;;;;;;;;;;;;;;45783:45;45861:3;45845:13;:19;;;;43414:2462;;45886:60;45915:1;45919:2;45923:12;45937:8;45886:20;:60::i;:::-;43050:2904;42988:2966;;:::o;30400:324::-;30470:14;30703:1;30693:8;30690:15;30664:24;30660:46;30650:56;;30400:324;;;:::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:116::-;9939:21;9954:5;9939:21;:::i;:::-;9932:5;9929:32;9919:60;;9975:1;9972;9965:12;9919:60;9869:116;:::o;9991:133::-;10034:5;10072:6;10059:20;10050:29;;10088:30;10112:5;10088:30;:::i;:::-;9991:133;;;;:::o;10130:468::-;10195:6;10203;10252:2;10240:9;10231:7;10227:23;10223:32;10220:119;;;10258:79;;:::i;:::-;10220:119;10378:1;10403:53;10448:7;10439:6;10428:9;10424:22;10403:53;:::i;:::-;10393:63;;10349:117;10505:2;10531:50;10573:7;10564:6;10553:9;10549:22;10531:50;:::i;:::-;10521:60;;10476:115;10130:468;;;;;:::o;10604:307::-;10665:4;10755:18;10747:6;10744:30;10741:56;;;10777:18;;:::i;:::-;10741:56;10815:29;10837:6;10815:29;:::i;:::-;10807:37;;10899:4;10893;10889:15;10881:23;;10604:307;;;:::o;10917:410::-;10994:5;11019:65;11035:48;11076:6;11035:48;:::i;:::-;11019:65;:::i;:::-;11010:74;;11107:6;11100:5;11093:21;11145:4;11138:5;11134:16;11183:3;11174:6;11169:3;11165:16;11162:25;11159:112;;;11190:79;;:::i;:::-;11159:112;11280:41;11314:6;11309:3;11304;11280:41;:::i;:::-;11000:327;10917:410;;;;;:::o;11346:338::-;11401:5;11450:3;11443:4;11435:6;11431:17;11427:27;11417:122;;11458:79;;:::i;:::-;11417:122;11575:6;11562:20;11600:78;11674:3;11666:6;11659:4;11651:6;11647:17;11600:78;:::i;:::-;11591:87;;11407:277;11346:338;;;;:::o;11690:943::-;11785:6;11793;11801;11809;11858:3;11846:9;11837:7;11833:23;11829:33;11826:120;;;11865:79;;:::i;:::-;11826:120;11985:1;12010:53;12055:7;12046:6;12035:9;12031:22;12010:53;:::i;:::-;12000:63;;11956:117;12112:2;12138:53;12183:7;12174:6;12163:9;12159:22;12138:53;:::i;:::-;12128:63;;12083:118;12240:2;12266:53;12311:7;12302:6;12291:9;12287:22;12266:53;:::i;:::-;12256:63;;12211:118;12396:2;12385:9;12381:18;12368:32;12427:18;12419:6;12416:30;12413:117;;;12449:79;;:::i;:::-;12413:117;12554:62;12608:7;12599:6;12588:9;12584:22;12554:62;:::i;:::-;12544:72;;12339:287;11690:943;;;;;;;:::o;12639:474::-;12707:6;12715;12764:2;12752:9;12743:7;12739:23;12735:32;12732:119;;;12770:79;;:::i;:::-;12732:119;12890:1;12915:53;12960:7;12951:6;12940:9;12936:22;12915:53;:::i;:::-;12905:63;;12861:117;13017:2;13043:53;13088:7;13079:6;13068:9;13064:22;13043:53;:::i;:::-;13033:63;;12988:118;12639:474;;;;;:::o;13119:180::-;13167:77;13164:1;13157:88;13264:4;13261:1;13254:15;13288:4;13285:1;13278:15;13305:320;13349:6;13386:1;13380:4;13376:12;13366:22;;13433:1;13427:4;13423:12;13454:18;13444:81;;13510:4;13502:6;13498:17;13488:27;;13444:81;13572:2;13564:6;13561:14;13541:18;13538:38;13535:84;;13591:18;;:::i;:::-;13535:84;13356:269;13305:320;;;:::o;13631:332::-;13752:4;13790:2;13779:9;13775:18;13767:26;;13803:71;13871:1;13860:9;13856:17;13847:6;13803:71;:::i;:::-;13884:72;13952:2;13941:9;13937:18;13928:6;13884:72;:::i;:::-;13631:332;;;;;:::o;13969:137::-;14023:5;14054:6;14048:13;14039:22;;14070:30;14094:5;14070:30;:::i;:::-;13969:137;;;;:::o;14112:345::-;14179:6;14228:2;14216:9;14207:7;14203:23;14199:32;14196:119;;;14234:79;;:::i;:::-;14196:119;14354:1;14379:61;14432:7;14423:6;14412:9;14408:22;14379:61;:::i;:::-;14369:71;;14325:125;14112:345;;;;:::o;14463:141::-;14512:4;14535:3;14527:11;;14558:3;14555:1;14548:14;14592:4;14589:1;14579:18;14571:26;;14463:141;;;:::o;14610:93::-;14647:6;14694:2;14689;14682:5;14678:14;14674:23;14664:33;;14610:93;;;:::o;14709:107::-;14753:8;14803:5;14797:4;14793:16;14772:37;;14709:107;;;;:::o;14822:393::-;14891:6;14941:1;14929:10;14925:18;14964:97;14994:66;14983:9;14964:97;:::i;:::-;15082:39;15112:8;15101:9;15082:39;:::i;:::-;15070:51;;15154:4;15150:9;15143:5;15139:21;15130:30;;15203:4;15193:8;15189:19;15182:5;15179:30;15169:40;;14898:317;;14822:393;;;;;:::o;15221:142::-;15271:9;15304:53;15322:34;15331:24;15349:5;15331:24;:::i;:::-;15322:34;:::i;:::-;15304:53;:::i;:::-;15291:66;;15221:142;;;:::o;15369:75::-;15412:3;15433:5;15426:12;;15369:75;;;:::o;15450:269::-;15560:39;15591:7;15560:39;:::i;:::-;15621:91;15670:41;15694:16;15670:41;:::i;:::-;15662:6;15655:4;15649:11;15621:91;:::i;:::-;15615:4;15608:105;15526:193;15450:269;;;:::o;15725:73::-;15770:3;15725:73;:::o;15804:189::-;15881:32;;:::i;:::-;15922:65;15980:6;15972;15966:4;15922:65;:::i;:::-;15857:136;15804:189;;:::o;15999:186::-;16059:120;16076:3;16069:5;16066:14;16059:120;;;16130:39;16167:1;16160:5;16130:39;:::i;:::-;16103:1;16096:5;16092:13;16083:22;;16059:120;;;15999:186;;:::o;16191:543::-;16292:2;16287:3;16284:11;16281:446;;;16326:38;16358:5;16326:38;:::i;:::-;16410:29;16428:10;16410:29;:::i;:::-;16400:8;16396:44;16593:2;16581:10;16578:18;16575:49;;;16614:8;16599:23;;16575:49;16637:80;16693:22;16711:3;16693:22;:::i;:::-;16683:8;16679:37;16666:11;16637:80;:::i;:::-;16296:431;;16281:446;16191:543;;;:::o;16740:117::-;16794:8;16844:5;16838:4;16834:16;16813:37;;16740:117;;;;:::o;16863:169::-;16907:6;16940:51;16988:1;16984:6;16976:5;16973:1;16969:13;16940:51;:::i;:::-;16936:56;17021:4;17015;17011:15;17001:25;;16914:118;16863:169;;;;:::o;17037:295::-;17113:4;17259:29;17284:3;17278:4;17259:29;:::i;:::-;17251:37;;17321:3;17318:1;17314:11;17308:4;17305:21;17297:29;;17037:295;;;;:::o;17337:1395::-;17454:37;17487:3;17454:37;:::i;:::-;17556:18;17548:6;17545:30;17542:56;;;17578:18;;:::i;:::-;17542:56;17622:38;17654:4;17648:11;17622:38;:::i;:::-;17707:67;17767:6;17759;17753:4;17707:67;:::i;:::-;17801:1;17825:4;17812:17;;17857:2;17849:6;17846:14;17874:1;17869:618;;;;18531:1;18548:6;18545:77;;;18597:9;18592:3;18588:19;18582:26;18573:35;;18545:77;18648:67;18708:6;18701:5;18648:67;:::i;:::-;18642:4;18635:81;18504:222;17839:887;;17869:618;17921:4;17917:9;17909:6;17905:22;17955:37;17987:4;17955:37;:::i;:::-;18014:1;18028:208;18042:7;18039:1;18036:14;18028:208;;;18121:9;18116:3;18112:19;18106:26;18098:6;18091:42;18172:1;18164:6;18160:14;18150:24;;18219:2;18208:9;18204:18;18191:31;;18065:4;18062:1;18058:12;18053:17;;18028:208;;;18264:6;18255:7;18252:19;18249:179;;;18322:9;18317:3;18313:19;18307:26;18365:48;18407:4;18399:6;18395:17;18384:9;18365:48;:::i;:::-;18357:6;18350:64;18272:156;18249:179;18474:1;18470;18462:6;18458:14;18454:22;18448:4;18441:36;17876:611;;;17839:887;;17429:1303;;;17337:1395;;:::o;18738:180::-;18878:32;18874:1;18866:6;18862:14;18855:56;18738:180;:::o;18924:366::-;19066:3;19087:67;19151:2;19146:3;19087:67;:::i;:::-;19080:74;;19163:93;19252:3;19163:93;:::i;:::-;19281:2;19276:3;19272:12;19265:19;;18924:366;;;:::o;19296:419::-;19462:4;19500:2;19489:9;19485:18;19477:26;;19549:9;19543:4;19539:20;19535:1;19524:9;19520:17;19513:47;19577:131;19703:4;19577:131;:::i;:::-;19569:139;;19296:419;;;:::o;19721:172::-;19861:24;19857:1;19849:6;19845:14;19838:48;19721:172;:::o;19899:366::-;20041:3;20062:67;20126:2;20121:3;20062:67;:::i;:::-;20055:74;;20138:93;20227:3;20138:93;:::i;:::-;20256:2;20251:3;20247:12;20240:19;;19899:366;;;:::o;20271:419::-;20437:4;20475:2;20464:9;20460:18;20452:26;;20524:9;20518:4;20514:20;20510:1;20499:9;20495:17;20488:47;20552:131;20678:4;20552:131;:::i;:::-;20544:139;;20271:419;;;:::o;20696:180::-;20744:77;20741:1;20734:88;20841:4;20838:1;20831:15;20865:4;20862:1;20855:15;20882:305;20922:3;20941:20;20959:1;20941:20;:::i;:::-;20936:25;;20975:20;20993:1;20975:20;:::i;:::-;20970:25;;21129:1;21061:66;21057:74;21054:1;21051:81;21048:107;;;21135:18;;:::i;:::-;21048:107;21179:1;21176;21172:9;21165:16;;20882:305;;;;:::o;21193:165::-;21333:17;21329:1;21321:6;21317:14;21310:41;21193:165;:::o;21364:366::-;21506:3;21527:67;21591:2;21586:3;21527:67;:::i;:::-;21520:74;;21603:93;21692:3;21603:93;:::i;:::-;21721:2;21716:3;21712:12;21705:19;;21364:366;;;:::o;21736:419::-;21902:4;21940:2;21929:9;21925:18;21917:26;;21989:9;21983:4;21979:20;21975:1;21964:9;21960:17;21953:47;22017:131;22143:4;22017:131;:::i;:::-;22009:139;;21736:419;;;:::o;22161:164::-;22301:16;22297:1;22289:6;22285:14;22278:40;22161:164;:::o;22331:366::-;22473:3;22494:67;22558:2;22553:3;22494:67;:::i;:::-;22487:74;;22570:93;22659:3;22570:93;:::i;:::-;22688:2;22683:3;22679:12;22672:19;;22331:366;;;:::o;22703:419::-;22869:4;22907:2;22896:9;22892:18;22884:26;;22956:9;22950:4;22946:20;22942:1;22931:9;22927:17;22920:47;22984:131;23110:4;22984:131;:::i;:::-;22976:139;;22703:419;;;:::o;23128:348::-;23168:7;23191:20;23209:1;23191:20;:::i;:::-;23186:25;;23225:20;23243:1;23225:20;:::i;:::-;23220:25;;23413:1;23345:66;23341:74;23338:1;23335:81;23330:1;23323:9;23316:17;23312:105;23309:131;;;23420:18;;:::i;:::-;23309:131;23468:1;23465;23461:9;23450:20;;23128:348;;;;:::o;23482:167::-;23622:19;23618:1;23610:6;23606:14;23599:43;23482:167;:::o;23655:366::-;23797:3;23818:67;23882:2;23877:3;23818:67;:::i;:::-;23811:74;;23894:93;23983:3;23894:93;:::i;:::-;24012:2;24007:3;24003:12;23996:19;;23655:366;;;:::o;24027:419::-;24193:4;24231:2;24220:9;24216:18;24208:26;;24280:9;24274:4;24270:20;24266:1;24255:9;24251:17;24244:47;24308:131;24434:4;24308:131;:::i;:::-;24300:139;;24027:419;;;:::o;24452:148::-;24554:11;24591:3;24576:18;;24452:148;;;;:::o;24606:377::-;24712:3;24740:39;24773:5;24740:39;:::i;:::-;24795:89;24877:6;24872:3;24795:89;:::i;:::-;24788:96;;24893:52;24938:6;24933:3;24926:4;24919:5;24915:16;24893:52;:::i;:::-;24970:6;24965:3;24961:16;24954:23;;24716:267;24606:377;;;;:::o;24989:435::-;25169:3;25191:95;25282:3;25273:6;25191:95;:::i;:::-;25184:102;;25303:95;25394:3;25385:6;25303:95;:::i;:::-;25296:102;;25415:3;25408:10;;24989:435;;;;;:::o;25430:225::-;25570:34;25566:1;25558:6;25554:14;25547:58;25639:8;25634:2;25626:6;25622:15;25615:33;25430:225;:::o;25661:366::-;25803:3;25824:67;25888:2;25883:3;25824:67;:::i;:::-;25817:74;;25900:93;25989:3;25900:93;:::i;:::-;26018:2;26013:3;26009:12;26002:19;;25661:366;;;:::o;26033:419::-;26199:4;26237:2;26226:9;26222:18;26214:26;;26286:9;26280:4;26276:20;26272:1;26261:9;26257:17;26250:47;26314:131;26440:4;26314:131;:::i;:::-;26306:139;;26033:419;;;:::o;26458:182::-;26598:34;26594:1;26586:6;26582:14;26575:58;26458:182;:::o;26646:366::-;26788:3;26809:67;26873:2;26868:3;26809:67;:::i;:::-;26802:74;;26885:93;26974:3;26885:93;:::i;:::-;27003:2;26998:3;26994:12;26987:19;;26646:366;;;:::o;27018:419::-;27184:4;27222:2;27211:9;27207:18;27199:26;;27271:9;27265:4;27261:20;27257:1;27246:9;27242:17;27235:47;27299:131;27425:4;27299:131;:::i;:::-;27291:139;;27018:419;;;:::o;27443:98::-;27494:6;27528:5;27522:12;27512:22;;27443:98;;;:::o;27547:168::-;27630:11;27664:6;27659:3;27652:19;27704:4;27699:3;27695:14;27680:29;;27547:168;;;;:::o;27721:360::-;27807:3;27835:38;27867:5;27835:38;:::i;:::-;27889:70;27952:6;27947:3;27889:70;:::i;:::-;27882:77;;27968:52;28013:6;28008:3;28001:4;27994:5;27990:16;27968:52;:::i;:::-;28045:29;28067:6;28045:29;:::i;:::-;28040:3;28036:39;28029:46;;27811:270;27721:360;;;;:::o;28087:640::-;28282:4;28320:3;28309:9;28305:19;28297:27;;28334:71;28402:1;28391:9;28387:17;28378:6;28334:71;:::i;:::-;28415:72;28483:2;28472:9;28468:18;28459:6;28415:72;:::i;:::-;28497;28565:2;28554:9;28550:18;28541:6;28497:72;:::i;:::-;28616:9;28610:4;28606:20;28601:2;28590:9;28586:18;28579:48;28644:76;28715:4;28706:6;28644:76;:::i;:::-;28636:84;;28087:640;;;;;;;:::o;28733:141::-;28789:5;28820:6;28814:13;28805:22;;28836:32;28862:5;28836:32;:::i;:::-;28733:141;;;;:::o;28880:349::-;28949:6;28998:2;28986:9;28977:7;28973:23;28969:32;28966:119;;;29004:79;;:::i;:::-;28966:119;29124:1;29149:63;29204:7;29195:6;29184:9;29180:22;29149:63;:::i;:::-;29139:73;;29095:127;28880:349;;;;:::o

Swarm Source

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