ETH Price: $2,761.20 (+5.19%)

Token

Particle (PRTCL)
 

Overview

Max Total Supply

0 PRTCL

Holders

61

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 PRTCL
0x0000000000000000000000000000000000000000
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:
PRTCLCollections721V1

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 400 runs

Other Settings:
default evmVersion
File 1 of 31 : PRTCLCollections721V1.sol
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity 0.8.17;

import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/EIP712.sol";
import "operator-filter-registry/src/RevokableDefaultOperatorFilterer.sol";
import "./interfaces/IPRTCLCollections721V1.sol";
import "./interfaces/IRandomizerV1.sol";
import "./governance/PRTCLCoreERC721Votes.sol";

/// @title Core ERC721 contract for multiple collections - Part of the Particle Protocol V1.1
/// @author Particle Collection - valdi.eth
/// @notice Manages all collections tokens and voting rights
/// @dev Exposes all public functions and events needed by the Particle Collection's smart contract suite version 1
/// @dev Adheres to the ERC721 standard, ERC721MultiCollection extension and Manifold for secondary royalties
/// @dev Integrates with the OpenSea's Operator Filter Registry to allow for filtering of token transfers: https://github.com/ProjectOpenSea/operator-filter-registry
/// @dev Based on Artblock's GenArt721CoreV3 contract design: https://github.com/ArtBlocks/artblocks-contracts/blob/main/contracts/GenArt721CoreV3.sol
/// Modifications to the original design:
/// - AccessControl extension from OZ
/// - Voting power extension modified from OZ's Votes contract
/// - MultiCollection support
/// - Collection state management modified to accomodate sales
/// - Added coordinate system by modyifing the Randomization design
/// - Added per collection, multi token burning
/// @dev The PRTCLCollections721V1 contract contains the following privileged access for the following functions:
/// - The MINTER_ROLE can mint a new token for any collection using mint().
/// - The GOVERNOR_ROLE can mark a collection as sold using markCollectionSold().
/// - The GOVERNOR_ROLE can burn all tokens of any owner for a specific collectionId using burn().
/// - The DEFAULT_ADMIN_ROLE can update the base URI using updateBaseURI().
/// - The DEFAULT_ADMIN_ROLE can disable new collections from being added using forbidNewCollections().
/// - The DEFAULT_ADMIN_ROLE can add a new collection using addCollection().
/// - The DEFAULT_ADMIN_ROLE can change whether a collection is active using toggleCollectionIsActive().
/// - The DEFAULT_ADMIN_ROLE can update the collection data using updateCollectionData().
/// - The DEFAULT_ADMIN_ROLE can update the collection financials using updateCollectionRoyalties(), updateCollectionPrimarySplit(), or updateRoyaltiesAddresses().
/// - The DEFAULT_ADMIN_ROLE can request collection seed after the time criteria have passed using requestCollectionSeeds().
/// - The DEFAULT_ADMIN_ROLE can update the randomizer contract using updateRandomizer().
/// - The DEFAULT_ADMIN_ROLE can mint a new token for any collection using mint() regardless of the collection status as long as the particle does not exceed the maximum.
/// - The DEFAULT_ADMIN_ROLE can update the operator filter registry admin using updateOperatorFilterRegistryAdmin().
/// @custom:security-contact [email protected]
contract PRTCLCollections721V1 is
    AccessControl,
    EIP712,
    PRTCLCoreERC721Votes,
    IPRTCLCollections721V1,
    RevokableDefaultOperatorFilterer,
    ReentrancyGuard
{
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant GOVERNOR_ROLE = keccak256("GOVERNOR_ROLE");

    uint256 constant MAX_BPS = 10000; // 10_000 BPS = 100%

    uint256 constant DEFAULT_ARTIST_ROYALTY_BPS = 500; // 5%
    uint256 constant DEFAULT_FJM_ROYALTY_BPS = 250; // 2,5%
    uint256 constant DEFAULT_DAO_ROYALTY_BPS = 250; // 2,5%

    uint256 constant DEFAULT_ARTIST_PRIMARY_BPS = 0; // 0%
    uint256 constant DEFAULT_FJM_PRIMARY_BPS = 10000; // 10_000 BPS = 100%
    uint256 constant DEFAULT_DAO_PRIMARY_BPS = 0; // 0%

    /// 4JM wallet address
    address payable public FJMAddress;
    /// Particle Collection DAO wallet address
    address payable public DAOAddress;
    /// Current randomizer contract
    IRandomizerV1 public randomizerContract;

    string public baseURI;

    struct Collection {
        // Number of particles in the collection
        uint24 nParticles;
        // Max number of particles in the collection
        uint24 maxParticles;
        bool active;
        // The original artwork has been sold through an accepted bid by the collection owners
        // Only editable by the governor contract, thus by a governance vote
        bool sold;
        string name;
        // Seeds to randomize token coordinates. Seeds are set after minting,
        // potentially altering the coordinate assignment of all tokens.
        // Only Randomizer contract can assign seeds.
        // E.g. Token id 1 could map to coordinate 4321
        uint24[] seeds;
        // Timestamp after which setting seeds (and thus revealing metadata) is allowed.
        // Block number, set to 256 blocks after last particle mint, to prevent speculation when setting seeds (look-ahead period of 8 epochs)
        uint256 setSeedsAfterBlock;
    }

    mapping(uint256 => Collection) collections;

    /// struct containing collection financial information
    struct CollectionFinance {
        address payable artistAddress;
        uint256 artistRoyaltyBPS;
        uint256 FJMRoyaltyBPS;
        uint256 DAORoyaltyBPS;
        uint256 artistPrimaryBPS;
        uint256 FJMPrimaryBPS;
        uint256 DAOPrimaryBPS;
    }

    // Collection financials mapping
    mapping(uint256 => CollectionFinance) collectionIdToFinancials;

    // Address that can modify the operator filter registry
    address public operatorFilterRegistryAdmin;

    modifier onlyNonZeroAddress(address _address) {
        require(_address != address(0), "Must input non-zero address");
        _;
    }

    modifier onlyNonEmptyString(string memory _string) {
        require(bytes(_string).length != 0, "Must input non-empty string");
        _;
    }

    constructor(
        string memory _bURI,
        address _delegationSigner,
        address payable _FJMAddress,
        address payable _DAOAddress
    )   onlyNonEmptyString(_bURI)
        onlyNonZeroAddress(_delegationSigner)
        ERC721MultiCollection(1_000_000)
        ERC721("Particle", "PRTCL")
        EIP712("Particle", "1")
        PRTCLCoreERC721Votes(_delegationSigner)
        ReentrancyGuard()
    {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        operatorFilterRegistryAdmin = msg.sender;
        baseURI = _bURI;

        updateRoyaltiesAddresses(_FJMAddress, _DAOAddress);
    }

    /**
     * @notice Updates base URI to `_newBaseURI`.
     * @param _newBaseURI New base URI.
     */
    function updateBaseURI(string memory _newBaseURI)
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
        onlyNonEmptyString(_newBaseURI)
    {
        baseURI = _newBaseURI;

        emit BaseURIUpdated(_newBaseURI);
    }

    /**
     * @notice Returns the base URI for all tokens. Used in tokenURI().
     */
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    /**
     * @notice Updates delegation signer to `_newDelegationSigner`.
     * @param _newDelegationSigner New delegation signer.
     */
    function updateDelegationSigner(address _newDelegationSigner)
        external
        onlyRole(DEFAULT_ADMIN_ROLE) {
        // Checks for non zero address
        _setDelegationSigner(_newDelegationSigner);
    }

    /**
     * @dev Updates the operator filter registry admin
     */
    function updateOperatorFilterRegistryAdmin(address _newAdmin)
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
        onlyNonZeroAddress(_newAdmin)
    {
        operatorFilterRegistryAdmin = _newAdmin;
    }

    /**
     * @dev Returns the address that can modify the operator filter registry.
     * Used by RevokableDefaultOperatorFilterer to allow modifications or revoking of filtering.
     */
    function owner() public view override returns (address) {
        return operatorFilterRegistryAdmin;
    }

    /**
     * @notice Forever forbids new collections from being added to this contract.
     * Only callable by DEFAULT_ADMIN_ROLE.
     * Should only be used after a new version of this contract has been deployed.
     * Emits NewCollectionsForbidden event.
     */
    function forbidNewCollections()
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        _forbidNewCollections();
    }

    /**
     * @notice Check if adding new collections is allowed on this contract.
     */
    function newCollectionsAllowed() public view returns (bool) {
        return _newCollectionsAllowed();
    }

    /**
     * @notice The collection can be sold if it has not been sold and is fully minted.
     */
    function collectionCanBeSold(uint256 _collectionId) onlyValidCollectionId(_collectionId) external view returns (bool) {
        Collection memory collection = collections[_collectionId];
        return !collection.sold && collection.nParticles == collection.maxParticles;
    }

    /**
     * @notice Proceeds for _tokens for a sale of `_salePrice`.
     */
    function proceeds(uint256 _collectionId, uint256 _salePrice, uint256 _commission, uint256 _tokens) onlyValidCollectionId(_collectionId) external view returns (uint256) {
        // Multiply first to avoid rounding errors as much as possible
        return (_salePrice - _salePrice * _commission / 100) * _tokens / collections[_collectionId].maxParticles;
    }

    /**
     * @notice Mark collection as sold.
     * Only callable by GOVERNOR_ROLE, thus by a completed and accepted governance
     * proposal being executed.
     */
    function markCollectionSold(uint256 _collectionId, address _buyer)
        external
        onlyRole(GOVERNOR_ROLE)
        onlyValidCollectionId(_collectionId)
    {
        Collection storage collection = collections[_collectionId];

        if (collection.sold) {
            revert AlreadySold();
        }

        collection.sold = true;

        emit CollectionSold(_collectionId, _buyer);
    }

    /**
     * @notice Gets royalty Basis Points (BPS) for tokens in collection ID `collectionId`.
     * @param collectionId Collection ID to be queried.
     * @return recipients Array of royalty payment recipients
     * @return bps Array of Basis Points (BPS) allocated to each recipient,
     * aligned by index.
     * @dev only returns recipients that have a non-zero BPS allocation
     */
    function getRoyaltiesForCollection(
        uint256 collectionId
    )
        public
        view
        onlyValidCollectionId(collectionId)
        returns (address payable[] memory recipients, uint256[] memory bps)
    {
        recipients = new address payable[](3);
        bps = new uint256[](3);

        CollectionFinance memory financials = collectionIdToFinancials[collectionId];

        // calculate BPS = percentage * 100
        uint256 artistBPS = financials.artistRoyaltyBPS;
        uint256 daoBPS = financials.DAORoyaltyBPS;
        uint256 fjmBPS = financials.FJMRoyaltyBPS;
        // populate arrays
        uint256 payeeCount;
        if (artistBPS > 0) {
            recipients[payeeCount] = financials.artistAddress;
            bps[payeeCount++] = artistBPS;
        }
        if (daoBPS > 0) {
            recipients[payeeCount] = DAOAddress;
            bps[payeeCount++] = daoBPS;
        }
        if (fjmBPS > 0) {
            recipients[payeeCount] = FJMAddress;
            bps[payeeCount++] = fjmBPS;
        }
        // trim arrays if necessary
        if (3 > payeeCount) {
            assembly {
                let decrease := sub(3, payeeCount)
                mstore(recipients, sub(mload(recipients), decrease))
                mstore(bps, sub(mload(bps), decrease))
            }
        }
        return (recipients, bps);
    }

    /**
     * @notice Gets royalty Basis Points (BPS) for token ID `tokenId`.
     * This conforms to the IManifold interface designated in the Royalty
     * Registry's RoyaltyEngineV1.sol contract.
     * ref: https://github.com/manifoldxyz/royalty-registry-solidity
     * @param tokenId Token ID to be queried.
     * @return recipients Array of royalty payment recipients
     * @return bps Array of Basis Points (BPS) allocated to each recipient,
     * aligned by index.
     * @dev only returns recipients that have a non-zero BPS allocation
     */
    function getRoyalties(
        uint256 tokenId
    )
        external
        view
        returns (address payable[] memory recipients, uint256[] memory bps)
    {
        if (!_exists(tokenId)) {
            revert InvalidTokenId(tokenId);
        }
        return getRoyaltiesForCollection(tokenIdToCollectionId(tokenId));
    }

    /**
     * @notice Returns the address of the artist for a given collection ID.
     */
    function collectionIdToArtistAddress(
        uint256 _collectionId
    ) external view onlyValidCollectionId(_collectionId) returns (address payable) {
        return collectionIdToFinancials[_collectionId].artistAddress;
    }

    /**
     * @notice Returns revenue split for primary sale of `_price` for collection `_collectionId`.
     * @dev Used by minter contract to determine how much to pay to each party.
     */
    function getPrimaryRevenueSplits(
        uint256 _collectionId,
        uint256 _price
    )
        external
        view
        onlyValidCollectionId(_collectionId)
        returns (
            uint256 FJMRevenue_,
            address payable FJMAddress_,
            uint256 DAORevenue_,
            address payable DAOAddress_,
            uint256 artistRevenue_,
            address payable artistAddress_
        )
    {
        CollectionFinance memory financials = collectionIdToFinancials[
            _collectionId
        ];
        // BPS should first be divided by 100 to get the percentage, then by 100 to get the value in the corresponding currency
        FJMRevenue_ =
            (_price * financials.FJMPrimaryBPS) /
            MAX_BPS;
        artistRevenue_ =
            (_price * financials.artistPrimaryBPS) /
            MAX_BPS;
        DAORevenue_ =
            (_price * financials.DAOPrimaryBPS) /
            MAX_BPS;

        FJMAddress_ = FJMAddress;
        artistAddress_ = financials.artistAddress;
        DAOAddress_ = DAOAddress;
    }

    /**
     * @notice Returns collection data for collection `_collectionId`.
     */
    function collectionData(uint256 _collectionId)
        external
        view
        onlyValidCollectionId(_collectionId)
        returns (
            uint256 nParticles,
            uint256 maxParticles,
            bool active,
            string memory collectionName,
            bool sold,
            uint24[] memory seeds,
            uint256 setSeedsAfterBlock
        )
    {
        Collection memory collection = collections[_collectionId];

        nParticles = collection.nParticles;
        maxParticles = collection.maxParticles;
        active = collection.active;
        collectionName = collection.name;
        sold = collection.sold;
        seeds = collection.seeds;
        setSeedsAfterBlock = collection.setSeedsAfterBlock;
    }

    /**
     * @notice Returns the coordinate within the collection artwork for a given token ID.
     * @dev The coordinate is calculated based on the collection's seeds (set by the randomizer contract), and the token ID.
     */
    function getCoordinate(uint256 _tokenId) external view returns (uint256) {
        // Get collection id, check if seeds have been set, calculate coordinate based on seeds
        Collection memory collection = collections[
            tokenIdToCollectionId(_tokenId)
        ];

        if (collection.seeds.length == 0) {
            revert CollectionNotRevealed(tokenIdToCollectionId(_tokenId));
        }

        // p1 and p2 are primes above 1M, guaranteeing no collisions
        // Using another prime to shift, to avoid 0 or last token id always being the first element
        uint32 p1 = collection.seeds[0];
        uint32 p2 = collection.seeds[1];
        uint256 maxParticles = collection.maxParticles;

        return (_tokenId * p1 + p2) % maxParticles;
    }

    /**
     * @notice Adds new collection `_collectionName` by `_artistAddress`.
     * @param _collectionName Artwork (ERC-721 collection) name.
     * @param _numberOfParticles Artwork will be divided in these many particles.
     * @param _artistAddress Artist's address.
     * @dev token price stored on minter contract. Emits CollectionAdded event from ERC721MultiCollection.
     */
    function addCollection(
        string memory _collectionName,
        uint24 _numberOfParticles,
        address payable _artistAddress
    )
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
        onlyNonZeroAddress(_artistAddress)
        onlyNonEmptyString(_collectionName)
        returns (uint256)
    {
        uint256 collectionId = _addCollection(_numberOfParticles);

        require(collectionId <= type(uint232).max, "Collection id > 232 bits");

        collectionIdToFinancials[collectionId].artistAddress = _artistAddress;
        collectionIdToFinancials[collectionId].artistRoyaltyBPS = DEFAULT_ARTIST_ROYALTY_BPS;
        collectionIdToFinancials[collectionId].FJMRoyaltyBPS = DEFAULT_FJM_ROYALTY_BPS;
        collectionIdToFinancials[collectionId].DAORoyaltyBPS = DEFAULT_DAO_ROYALTY_BPS;

        // Primary sales revenue split
        collectionIdToFinancials[collectionId].artistPrimaryBPS = DEFAULT_ARTIST_PRIMARY_BPS;
        collectionIdToFinancials[collectionId].FJMPrimaryBPS = DEFAULT_FJM_PRIMARY_BPS;
        collectionIdToFinancials[collectionId].DAOPrimaryBPS = DEFAULT_DAO_PRIMARY_BPS;

        collections[collectionId].name = _collectionName;
        collections[collectionId].maxParticles = _numberOfParticles;

        return collectionId;
    }

    /**
     * @notice Toggles collection `_collectionId` as active/inactive.
     * @param _collectionId Collection ID to be toggled.
     */
    function toggleCollectionIsActive(uint256 _collectionId)
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
        onlyValidCollectionId(_collectionId)
    {
        collections[_collectionId].active = !collections[_collectionId].active;
        
        if (collections[_collectionId].active) {
            emit CollectionActive(_collectionId);
        } else {
            emit CollectionInactive(_collectionId);
        }
    }

    /**
     * @notice Updates a collection's data.
     * @param _collectionId Collection ID.
     * @param _artistAddress New artist address.
     * @param _collectionName New collection name.
     */
    function updateCollectionData(
        uint256 _collectionId,
        address payable _artistAddress,
        string memory _collectionName
    )
        external
        onlyValidCollectionId(_collectionId)
        onlyRole(DEFAULT_ADMIN_ROLE)
        onlyNonZeroAddress(_artistAddress)
        onlyNonEmptyString(_collectionName)
    {
        collections[_collectionId].name = _collectionName;
        collectionIdToFinancials[_collectionId].artistAddress = _artistAddress;
        emit CollectionDataUpdated(_collectionId);
    }

    /**
     * @notice Updates a collection's max particles.
     * @param _collectionId Collection ID.
     * @param _maxParticles New number of particles for collection.
     */
    function updateCollectionMaxParticles(
        uint256 _collectionId,
        uint24 _maxParticles
    )
        external
        onlyValidCollectionId(_collectionId)
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        require(_validCollectionSize(_maxParticles), "maxParticles has to be > 0 and <= 1M");
        require(collections[_collectionId].nParticles == 0, "maxParticles can only be updated if no particles have been minted");
        collections[_collectionId].maxParticles = _maxParticles;
        emit CollectionSizeUpdated(_collectionId, _maxParticles);
    }

    /**
     * @notice Updates collection's financials.
     * @param _collectionId Collection ID.
     * @param _artistRoyaltyBPS New artist fee percentage.
     * @param _FJMRoyaltyBPS New 4JM fee percentage.
     * @param _DAORoyaltyBPS New DAO fee percentage.
     */
    function updateCollectionRoyalties(
        uint256 _collectionId,
        uint256 _artistRoyaltyBPS,
        uint256 _FJMRoyaltyBPS,
        uint256 _DAORoyaltyBPS
    )
        external
        onlyValidCollectionId(_collectionId)
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        // 10_000 BPS = 100%
        // require the sum of all royalties to be less than or equal to MAX_BPS
        require(_artistRoyaltyBPS + _FJMRoyaltyBPS + _DAORoyaltyBPS <= MAX_BPS, "Royalties > 100%");
        collectionIdToFinancials[_collectionId].artistRoyaltyBPS = _artistRoyaltyBPS;
        collectionIdToFinancials[_collectionId].FJMRoyaltyBPS = _FJMRoyaltyBPS;
        collectionIdToFinancials[_collectionId].DAORoyaltyBPS = _DAORoyaltyBPS;
        emit CollectionRoyaltiesUpdated(_collectionId);
    }

    /**
     * @notice Updates collection's financials.
     * @param _collectionId Collection ID.
     * @param _artistPrimaryBPS New artist fee percentage.
     * @param _FJMPrimaryBPS New 4JM fee percentage.
     * @param _DAOPrimaryBPS New DAO fee percentage.
     */
    function updateCollectionPrimarySplit(
        uint256 _collectionId,
        uint256 _artistPrimaryBPS,
        uint256 _FJMPrimaryBPS,
        uint256 _DAOPrimaryBPS
    )
        external
        onlyValidCollectionId(_collectionId)
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        // 10_000 BPS = 100%
        // require the sum of all primary splits to be exactly MAX_BPS
        require(_artistPrimaryBPS + _FJMPrimaryBPS + _DAOPrimaryBPS == MAX_BPS, "Primary split != 100%");
        collectionIdToFinancials[_collectionId].artistPrimaryBPS = _artistPrimaryBPS;
        collectionIdToFinancials[_collectionId].FJMPrimaryBPS = _FJMPrimaryBPS;
        collectionIdToFinancials[_collectionId].DAOPrimaryBPS = _DAOPrimaryBPS;
        emit CollectionPrimarySplitUpdated(_collectionId);
    }

    /**
     * @notice Updates collection's seeds.
     * @param _collectionId Collection ID.
     * @param _seeds Seeds to be set for collection `_collectionId`.
     * @dev Only callable by Randomizer contract.
     */
    function setCollectionSeeds(
        uint256 _collectionId,
        uint24[2] calldata _seeds
    ) external onlyValidCollectionId(_collectionId) {
        require(
            msg.sender == address(randomizerContract),
            "Only randomizer may set"
        );

        Collection storage collection = collections[_collectionId];

        require(collection.seeds.length == 0, "Seeds already set");
        require(_seeds.length == 2, "Seeds must be length 2");

        collection.seeds = _seeds;

        emit CollectionSeedsSet(_collectionId, _seeds[0], _seeds[1]);
    }

    /**
     * @notice Requests an update to the collection's seeds from the Randomizer contract.
     * @param _collectionId Collection ID.
     * @dev Only callable by Admin after the setSeedsAfterBlock block number.
     */
    function requestCollectionSeeds(
        uint256 _collectionId
    ) external onlyValidCollectionId(_collectionId) onlyRole(DEFAULT_ADMIN_ROLE) {
        uint allowedBlock = collections[_collectionId].setSeedsAfterBlock;
        require(allowedBlock > 0 && block.number > allowedBlock, "Too early to set seeds");

        randomizerContract.setCollectionSeeds(_collectionId);
    }

    /**
     * @notice Updates 4JM and DAO addresses.
     * @param _FJMAddress 4JM address.
     * @param _DAOAddress DAO address.
     * Registry.
     */
    function updateRoyaltiesAddresses(
        address payable _FJMAddress,
        address payable _DAOAddress
    )
        public
        onlyRole(DEFAULT_ADMIN_ROLE)
        onlyNonZeroAddress(_FJMAddress)
        onlyNonZeroAddress(_DAOAddress)
    {
        FJMAddress = _FJMAddress;
        DAOAddress = _DAOAddress;

        emit RoyaltiesAddressesUpdated(_FJMAddress, _DAOAddress);
    }

    /**
     * @notice Updates randomizer to `_randomizerAddress`.
     * @param _randomizerAddress Address of new randomizer.
     */
    function updateRandomizer(
        address _randomizerAddress
    )
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
        onlyNonZeroAddress(_randomizerAddress)
    {
        randomizerContract = IRandomizerV1(_randomizerAddress);

        emit RandomizerUpdated(_randomizerAddress);
    }

    /**
     * @notice Mints a new token for collection `_collectionId`.
     * @param _to Receiver of the new token.
     * @param _collectionId Collection ID.
     * @param _amount Number of tokens to mint.
     * @dev Mints ids in incremental order, coordinates are determined at random on last mint 
     * (requires minting all collection ids to generate seeds). Only callable by minter role 
     * (minter contract and admin account handling fiat sales).
     */
    function mint(
        address _to,
        uint256 _collectionId,
        uint24 _amount
    ) external onlyValidCollectionId(_collectionId) nonReentrant returns (uint256 tokenId) {
        if (!hasRole(DEFAULT_ADMIN_ROLE, msg.sender) && !hasRole(MINTER_ROLE, msg.sender)) {
            revert NotAllowed();
        }

        if (_amount == 0) {
            revert InvalidMintAmount(_amount);
        }

        Collection storage collection = collections[_collectionId];
        uint24 oldNParticles = collection.nParticles;
        uint24 maxParticles = collection.maxParticles;

        uint24 newNParticles = oldNParticles + _amount;

        if (newNParticles > maxParticles) {
            revert InvalidMintAmount(_amount);
        }

        if (!collection.active && !hasRole(DEFAULT_ADMIN_ROLE, msg.sender)) {
            revert CollectionNotActive(_collectionId);
        }

        collection.nParticles = newNParticles;

        uint256 newTokenId;

        unchecked {
            // oldNParticles is uint24 << max uint256. In production use,
            // _collectionId * ONE_MILLION must be << max uint256, otherwise
            // tokenIdToCollectionId function becomes invalid.
            // Therefore, no risk of overflow
            newTokenId = (_collectionId * MAX_COLLECTION_SIZE) + oldNParticles;
        }

        if (newNParticles == maxParticles) {
            // Allow setCollectionSeeds to be called 256 blocks (8 epochs) after the last mint, 
            // by a contract Admin (essentially revealing the final coordinates and metadata for each token)
            collection.setSeedsAfterBlock = block.number + 256;
            collection.active = false;

            emit CollectionFullyMinted(_collectionId);
        }

        for (uint256 i; i < _amount;) {
            _safeMint(_to, newTokenId + i);
            unchecked { i++; }
        }

        return newTokenId;
    }

    /**
     * @notice Burns tokensToRedeem tokens in a collection for user `tokensOwner`.
     * Used when redeeming proceeds from a sale.
     *
     * @dev The caller must be the governor contract.
     * Approval to burn is checked on the governor contract.
     */
    function burn(address tokensOwner, uint256 collectionId, uint256 tokensToRedeem)
        external
        onlyRole(GOVERNOR_ROLE)
        onlyValidCollectionId(collectionId)
        returns (uint256 tokensBurnt)
    {
        return _burn(tokensOwner, collectionId, tokensToRedeem);
    }

    /**
     * @notice Burns `tokens` array in a collection for user `tokensOwner`.
     * Used when redeeming proceeds from a sale.
     *
     * @dev The caller must be the governor contract.
     * Approval to burn is checked on the governor contract.
     */
    function burn(address tokensOwner, uint256 collectionId, uint256[] calldata tokens)
        external
        onlyRole(GOVERNOR_ROLE)
        returns (uint256 tokensBurnt)
    {
        return _burn(tokensOwner, collectionId, tokens);
    }

    /// @dev Override transfer and approval functions to use the operator filter registry

    /**
     * @dev See {IERC721-setApprovalForAll}.
     *      The added modifier ensures that the operator is allowed by the OperatorFilterRegistry.
     */
    function setApprovalForAll(address operator, bool approved) public override(IERC721, ERC721) onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    /**
     * @dev See {IERC721-approve}.
     *      The added modifier ensures that the operator is allowed by the OperatorFilterRegistry.
     */
    function approve(address operator, uint256 tokenId) public override(IERC721, ERC721) onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    /**
     * @dev See {IERC721-transferFrom}.
     *      The added modifier ensures that the operator is allowed by the OperatorFilterRegistry.
     */
    function transferFrom(address from, address to, uint256 tokenId) public override(IERC721, ERC721) onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     *      The added modifier ensures that the operator is allowed by the OperatorFilterRegistry.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public override(IERC721, ERC721) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     *      The added modifier ensures that the operator is allowed by the OperatorFilterRegistry.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override(IERC721, ERC721)
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId,
        uint256 batchSize
    ) internal override(ERC721MultiCollection) {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId,
        uint256 batchSize
    ) internal override(PRTCLCoreERC721Votes) {
        super._afterTokenTransfer(from, to, tokenId, batchSize);
    }

    function supportsInterface(
        bytes4 interfaceId
    )
        public
        view
        override(ERC721, AccessControl, IERC165)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 31 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 3 of 31 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 4 of 31 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// 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 5 of 31 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId, 1);

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

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

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

File 6 of 31 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

File 7 of 31 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

File 8 of 31 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 31 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 10 of 31 : Checkpoints.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.1) (utils/Checkpoints.sol)
// This file was procedurally generated from scripts/generate/templates/Checkpoints.js.

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SafeCast.sol";

/**
 * @dev This library defines the `History` struct, for checkpointing values as they change at different points in
 * time, and later looking up past values by block number. See {Votes} as an example.
 *
 * To create a history of checkpoints define a variable type `Checkpoints.History` in your contract, and store a new
 * checkpoint for the current transaction block using the {push} function.
 *
 * _Available since v4.5._
 */
library Checkpoints {
    struct History {
        Checkpoint[] _checkpoints;
    }

    struct Checkpoint {
        uint32 _blockNumber;
        uint224 _value;
    }

    /**
     * @dev Returns the value at a given block number. If a checkpoint is not available at that block, the closest one
     * before it is returned, or zero otherwise. Because the number returned corresponds to that at the end of the
     * block, the requested block number must be in the past, excluding the current block.
     */
    function getAtBlock(History storage self, uint256 blockNumber) internal view returns (uint256) {
        require(blockNumber < block.number, "Checkpoints: block not yet mined");
        uint32 key = SafeCast.toUint32(blockNumber);

        uint256 len = self._checkpoints.length;
        uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len);
        return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;
    }

    /**
     * @dev Returns the value at a given block number. If a checkpoint is not available at that block, the closest one
     * before it is returned, or zero otherwise. Similar to {upperLookup} but optimized for the case when the searched
     * checkpoint is probably "recent", defined as being among the last sqrt(N) checkpoints where N is the number of
     * checkpoints.
     */
    function getAtProbablyRecentBlock(History storage self, uint256 blockNumber) internal view returns (uint256) {
        require(blockNumber < block.number, "Checkpoints: block not yet mined");
        uint32 key = SafeCast.toUint32(blockNumber);

        uint256 len = self._checkpoints.length;

        uint256 low = 0;
        uint256 high = len;

        if (len > 5) {
            uint256 mid = len - Math.sqrt(len);
            if (key < _unsafeAccess(self._checkpoints, mid)._blockNumber) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        uint256 pos = _upperBinaryLookup(self._checkpoints, key, low, high);

        return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;
    }

    /**
     * @dev Pushes a value onto a History so that it is stored as the checkpoint for the current block.
     *
     * Returns previous value and new value.
     */
    function push(History storage self, uint256 value) internal returns (uint256, uint256) {
        return _insert(self._checkpoints, SafeCast.toUint32(block.number), SafeCast.toUint224(value));
    }

    /**
     * @dev Pushes a value onto a History, by updating the latest value using binary operation `op`. The new value will
     * be set to `op(latest, delta)`.
     *
     * Returns previous value and new value.
     */
    function push(
        History storage self,
        function(uint256, uint256) view returns (uint256) op,
        uint256 delta
    ) internal returns (uint256, uint256) {
        return push(self, op(latest(self), delta));
    }

    /**
     * @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints.
     */
    function latest(History storage self) internal view returns (uint224) {
        uint256 pos = self._checkpoints.length;
        return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;
    }

    /**
     * @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value
     * in the most recent checkpoint.
     */
    function latestCheckpoint(History storage self)
        internal
        view
        returns (
            bool exists,
            uint32 _blockNumber,
            uint224 _value
        )
    {
        uint256 pos = self._checkpoints.length;
        if (pos == 0) {
            return (false, 0, 0);
        } else {
            Checkpoint memory ckpt = _unsafeAccess(self._checkpoints, pos - 1);
            return (true, ckpt._blockNumber, ckpt._value);
        }
    }

    /**
     * @dev Returns the number of checkpoint.
     */
    function length(History storage self) internal view returns (uint256) {
        return self._checkpoints.length;
    }

    /**
     * @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,
     * or by updating the last one.
     */
    function _insert(
        Checkpoint[] storage self,
        uint32 key,
        uint224 value
    ) private returns (uint224, uint224) {
        uint256 pos = self.length;

        if (pos > 0) {
            // Copying to memory is important here.
            Checkpoint memory last = _unsafeAccess(self, pos - 1);

            // Checkpoints keys must be increasing.
            require(last._blockNumber <= key, "Checkpoint: invalid key");

            // Update or push new checkpoint
            if (last._blockNumber == key) {
                _unsafeAccess(self, pos - 1)._value = value;
            } else {
                self.push(Checkpoint({_blockNumber: key, _value: value}));
            }
            return (last._value, value);
        } else {
            self.push(Checkpoint({_blockNumber: key, _value: value}));
            return (0, value);
        }
    }

    /**
     * @dev Return the index of the oldest checkpoint whose key is greater than the search key, or `high` if there is none.
     * `low` and `high` define a section where to do the search, with inclusive `low` and exclusive `high`.
     *
     * WARNING: `high` should not be greater than the array's length.
     */
    function _upperBinaryLookup(
        Checkpoint[] storage self,
        uint32 key,
        uint256 low,
        uint256 high
    ) private view returns (uint256) {
        while (low < high) {
            uint256 mid = Math.average(low, high);
            if (_unsafeAccess(self, mid)._blockNumber > key) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }
        return high;
    }

    /**
     * @dev Return the index of the oldest checkpoint whose key is greater or equal than the search key, or `high` if there is none.
     * `low` and `high` define a section where to do the search, with inclusive `low` and exclusive `high`.
     *
     * WARNING: `high` should not be greater than the array's length.
     */
    function _lowerBinaryLookup(
        Checkpoint[] storage self,
        uint32 key,
        uint256 low,
        uint256 high
    ) private view returns (uint256) {
        while (low < high) {
            uint256 mid = Math.average(low, high);
            if (_unsafeAccess(self, mid)._blockNumber < key) {
                low = mid + 1;
            } else {
                high = mid;
            }
        }
        return high;
    }

    /**
     * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds.
     */
    function _unsafeAccess(Checkpoint[] storage self, uint256 pos) private pure returns (Checkpoint storage result) {
        assembly {
            mstore(0, self.slot)
            result.slot := add(keccak256(0, 0x20), pos)
        }
    }

    struct Trace224 {
        Checkpoint224[] _checkpoints;
    }

    struct Checkpoint224 {
        uint32 _key;
        uint224 _value;
    }

    /**
     * @dev Pushes a (`key`, `value`) pair into a Trace224 so that it is stored as the checkpoint.
     *
     * Returns previous value and new value.
     */
    function push(
        Trace224 storage self,
        uint32 key,
        uint224 value
    ) internal returns (uint224, uint224) {
        return _insert(self._checkpoints, key, value);
    }

    /**
     * @dev Returns the value in the oldest checkpoint with key greater or equal than the search key, or zero if there is none.
     */
    function lowerLookup(Trace224 storage self, uint32 key) internal view returns (uint224) {
        uint256 len = self._checkpoints.length;
        uint256 pos = _lowerBinaryLookup(self._checkpoints, key, 0, len);
        return pos == len ? 0 : _unsafeAccess(self._checkpoints, pos)._value;
    }

    /**
     * @dev Returns the value in the most recent checkpoint with key lower or equal than the search key.
     */
    function upperLookup(Trace224 storage self, uint32 key) internal view returns (uint224) {
        uint256 len = self._checkpoints.length;
        uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len);
        return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;
    }

    /**
     * @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints.
     */
    function latest(Trace224 storage self) internal view returns (uint224) {
        uint256 pos = self._checkpoints.length;
        return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;
    }

    /**
     * @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value
     * in the most recent checkpoint.
     */
    function latestCheckpoint(Trace224 storage self)
        internal
        view
        returns (
            bool exists,
            uint32 _key,
            uint224 _value
        )
    {
        uint256 pos = self._checkpoints.length;
        if (pos == 0) {
            return (false, 0, 0);
        } else {
            Checkpoint224 memory ckpt = _unsafeAccess(self._checkpoints, pos - 1);
            return (true, ckpt._key, ckpt._value);
        }
    }

    /**
     * @dev Returns the number of checkpoint.
     */
    function length(Trace224 storage self) internal view returns (uint256) {
        return self._checkpoints.length;
    }

    /**
     * @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,
     * or by updating the last one.
     */
    function _insert(
        Checkpoint224[] storage self,
        uint32 key,
        uint224 value
    ) private returns (uint224, uint224) {
        uint256 pos = self.length;

        if (pos > 0) {
            // Copying to memory is important here.
            Checkpoint224 memory last = _unsafeAccess(self, pos - 1);

            // Checkpoints keys must be increasing.
            require(last._key <= key, "Checkpoint: invalid key");

            // Update or push new checkpoint
            if (last._key == key) {
                _unsafeAccess(self, pos - 1)._value = value;
            } else {
                self.push(Checkpoint224({_key: key, _value: value}));
            }
            return (last._value, value);
        } else {
            self.push(Checkpoint224({_key: key, _value: value}));
            return (0, value);
        }
    }

    /**
     * @dev Return the index of the oldest checkpoint whose key is greater than the search key, or `high` if there is none.
     * `low` and `high` define a section where to do the search, with inclusive `low` and exclusive `high`.
     *
     * WARNING: `high` should not be greater than the array's length.
     */
    function _upperBinaryLookup(
        Checkpoint224[] storage self,
        uint32 key,
        uint256 low,
        uint256 high
    ) private view returns (uint256) {
        while (low < high) {
            uint256 mid = Math.average(low, high);
            if (_unsafeAccess(self, mid)._key > key) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }
        return high;
    }

    /**
     * @dev Return the index of the oldest checkpoint whose key is greater or equal than the search key, or `high` if there is none.
     * `low` and `high` define a section where to do the search, with inclusive `low` and exclusive `high`.
     *
     * WARNING: `high` should not be greater than the array's length.
     */
    function _lowerBinaryLookup(
        Checkpoint224[] storage self,
        uint32 key,
        uint256 low,
        uint256 high
    ) private view returns (uint256) {
        while (low < high) {
            uint256 mid = Math.average(low, high);
            if (_unsafeAccess(self, mid)._key < key) {
                low = mid + 1;
            } else {
                high = mid;
            }
        }
        return high;
    }

    /**
     * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds.
     */
    function _unsafeAccess(Checkpoint224[] storage self, uint256 pos)
        private
        pure
        returns (Checkpoint224 storage result)
    {
        assembly {
            mstore(0, self.slot)
            result.slot := add(keccak256(0, 0x20), pos)
        }
    }

    struct Trace160 {
        Checkpoint160[] _checkpoints;
    }

    struct Checkpoint160 {
        uint96 _key;
        uint160 _value;
    }

    /**
     * @dev Pushes a (`key`, `value`) pair into a Trace160 so that it is stored as the checkpoint.
     *
     * Returns previous value and new value.
     */
    function push(
        Trace160 storage self,
        uint96 key,
        uint160 value
    ) internal returns (uint160, uint160) {
        return _insert(self._checkpoints, key, value);
    }

    /**
     * @dev Returns the value in the oldest checkpoint with key greater or equal than the search key, or zero if there is none.
     */
    function lowerLookup(Trace160 storage self, uint96 key) internal view returns (uint160) {
        uint256 len = self._checkpoints.length;
        uint256 pos = _lowerBinaryLookup(self._checkpoints, key, 0, len);
        return pos == len ? 0 : _unsafeAccess(self._checkpoints, pos)._value;
    }

    /**
     * @dev Returns the value in the most recent checkpoint with key lower or equal than the search key.
     */
    function upperLookup(Trace160 storage self, uint96 key) internal view returns (uint160) {
        uint256 len = self._checkpoints.length;
        uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len);
        return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;
    }

    /**
     * @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints.
     */
    function latest(Trace160 storage self) internal view returns (uint160) {
        uint256 pos = self._checkpoints.length;
        return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;
    }

    /**
     * @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value
     * in the most recent checkpoint.
     */
    function latestCheckpoint(Trace160 storage self)
        internal
        view
        returns (
            bool exists,
            uint96 _key,
            uint160 _value
        )
    {
        uint256 pos = self._checkpoints.length;
        if (pos == 0) {
            return (false, 0, 0);
        } else {
            Checkpoint160 memory ckpt = _unsafeAccess(self._checkpoints, pos - 1);
            return (true, ckpt._key, ckpt._value);
        }
    }

    /**
     * @dev Returns the number of checkpoint.
     */
    function length(Trace160 storage self) internal view returns (uint256) {
        return self._checkpoints.length;
    }

    /**
     * @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,
     * or by updating the last one.
     */
    function _insert(
        Checkpoint160[] storage self,
        uint96 key,
        uint160 value
    ) private returns (uint160, uint160) {
        uint256 pos = self.length;

        if (pos > 0) {
            // Copying to memory is important here.
            Checkpoint160 memory last = _unsafeAccess(self, pos - 1);

            // Checkpoints keys must be increasing.
            require(last._key <= key, "Checkpoint: invalid key");

            // Update or push new checkpoint
            if (last._key == key) {
                _unsafeAccess(self, pos - 1)._value = value;
            } else {
                self.push(Checkpoint160({_key: key, _value: value}));
            }
            return (last._value, value);
        } else {
            self.push(Checkpoint160({_key: key, _value: value}));
            return (0, value);
        }
    }

    /**
     * @dev Return the index of the oldest checkpoint whose key is greater than the search key, or `high` if there is none.
     * `low` and `high` define a section where to do the search, with inclusive `low` and exclusive `high`.
     *
     * WARNING: `high` should not be greater than the array's length.
     */
    function _upperBinaryLookup(
        Checkpoint160[] storage self,
        uint96 key,
        uint256 low,
        uint256 high
    ) private view returns (uint256) {
        while (low < high) {
            uint256 mid = Math.average(low, high);
            if (_unsafeAccess(self, mid)._key > key) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }
        return high;
    }

    /**
     * @dev Return the index of the oldest checkpoint whose key is greater or equal than the search key, or `high` if there is none.
     * `low` and `high` define a section where to do the search, with inclusive `low` and exclusive `high`.
     *
     * WARNING: `high` should not be greater than the array's length.
     */
    function _lowerBinaryLookup(
        Checkpoint160[] storage self,
        uint96 key,
        uint256 low,
        uint256 high
    ) private view returns (uint256) {
        while (low < high) {
            uint256 mid = Math.average(low, high);
            if (_unsafeAccess(self, mid)._key < key) {
                low = mid + 1;
            } else {
                high = mid;
            }
        }
        return high;
    }

    /**
     * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds.
     */
    function _unsafeAccess(Checkpoint160[] storage self, uint256 pos)
        private
        pure
        returns (Checkpoint160 storage result)
    {
        assembly {
            mstore(0, self.slot)
            result.slot := add(keccak256(0, 0x20), pos)
        }
    }
}

File 11 of 31 : Context.sol
// SPDX-License-Identifier: MIT
// 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 12 of 31 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 13 of 31 : EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 14 of 31 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 15 of 31 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 16 of 31 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 17 of 31 : SafeCast.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.

pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint248 from uint256, reverting on
     * overflow (when the input is greater than largest uint248).
     *
     * Counterpart to Solidity's `uint248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     *
     * _Available since v4.7._
     */
    function toUint248(uint256 value) internal pure returns (uint248) {
        require(value <= type(uint248).max, "SafeCast: value doesn't fit in 248 bits");
        return uint248(value);
    }

    /**
     * @dev Returns the downcasted uint240 from uint256, reverting on
     * overflow (when the input is greater than largest uint240).
     *
     * Counterpart to Solidity's `uint240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     *
     * _Available since v4.7._
     */
    function toUint240(uint256 value) internal pure returns (uint240) {
        require(value <= type(uint240).max, "SafeCast: value doesn't fit in 240 bits");
        return uint240(value);
    }

    /**
     * @dev Returns the downcasted uint232 from uint256, reverting on
     * overflow (when the input is greater than largest uint232).
     *
     * Counterpart to Solidity's `uint232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     *
     * _Available since v4.7._
     */
    function toUint232(uint256 value) internal pure returns (uint232) {
        require(value <= type(uint232).max, "SafeCast: value doesn't fit in 232 bits");
        return uint232(value);
    }

    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     *
     * _Available since v4.2._
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint216 from uint256, reverting on
     * overflow (when the input is greater than largest uint216).
     *
     * Counterpart to Solidity's `uint216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     *
     * _Available since v4.7._
     */
    function toUint216(uint256 value) internal pure returns (uint216) {
        require(value <= type(uint216).max, "SafeCast: value doesn't fit in 216 bits");
        return uint216(value);
    }

    /**
     * @dev Returns the downcasted uint208 from uint256, reverting on
     * overflow (when the input is greater than largest uint208).
     *
     * Counterpart to Solidity's `uint208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     *
     * _Available since v4.7._
     */
    function toUint208(uint256 value) internal pure returns (uint208) {
        require(value <= type(uint208).max, "SafeCast: value doesn't fit in 208 bits");
        return uint208(value);
    }

    /**
     * @dev Returns the downcasted uint200 from uint256, reverting on
     * overflow (when the input is greater than largest uint200).
     *
     * Counterpart to Solidity's `uint200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     *
     * _Available since v4.7._
     */
    function toUint200(uint256 value) internal pure returns (uint200) {
        require(value <= type(uint200).max, "SafeCast: value doesn't fit in 200 bits");
        return uint200(value);
    }

    /**
     * @dev Returns the downcasted uint192 from uint256, reverting on
     * overflow (when the input is greater than largest uint192).
     *
     * Counterpart to Solidity's `uint192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     *
     * _Available since v4.7._
     */
    function toUint192(uint256 value) internal pure returns (uint192) {
        require(value <= type(uint192).max, "SafeCast: value doesn't fit in 192 bits");
        return uint192(value);
    }

    /**
     * @dev Returns the downcasted uint184 from uint256, reverting on
     * overflow (when the input is greater than largest uint184).
     *
     * Counterpart to Solidity's `uint184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     *
     * _Available since v4.7._
     */
    function toUint184(uint256 value) internal pure returns (uint184) {
        require(value <= type(uint184).max, "SafeCast: value doesn't fit in 184 bits");
        return uint184(value);
    }

    /**
     * @dev Returns the downcasted uint176 from uint256, reverting on
     * overflow (when the input is greater than largest uint176).
     *
     * Counterpart to Solidity's `uint176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     *
     * _Available since v4.7._
     */
    function toUint176(uint256 value) internal pure returns (uint176) {
        require(value <= type(uint176).max, "SafeCast: value doesn't fit in 176 bits");
        return uint176(value);
    }

    /**
     * @dev Returns the downcasted uint168 from uint256, reverting on
     * overflow (when the input is greater than largest uint168).
     *
     * Counterpart to Solidity's `uint168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     *
     * _Available since v4.7._
     */
    function toUint168(uint256 value) internal pure returns (uint168) {
        require(value <= type(uint168).max, "SafeCast: value doesn't fit in 168 bits");
        return uint168(value);
    }

    /**
     * @dev Returns the downcasted uint160 from uint256, reverting on
     * overflow (when the input is greater than largest uint160).
     *
     * Counterpart to Solidity's `uint160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     *
     * _Available since v4.7._
     */
    function toUint160(uint256 value) internal pure returns (uint160) {
        require(value <= type(uint160).max, "SafeCast: value doesn't fit in 160 bits");
        return uint160(value);
    }

    /**
     * @dev Returns the downcasted uint152 from uint256, reverting on
     * overflow (when the input is greater than largest uint152).
     *
     * Counterpart to Solidity's `uint152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     *
     * _Available since v4.7._
     */
    function toUint152(uint256 value) internal pure returns (uint152) {
        require(value <= type(uint152).max, "SafeCast: value doesn't fit in 152 bits");
        return uint152(value);
    }

    /**
     * @dev Returns the downcasted uint144 from uint256, reverting on
     * overflow (when the input is greater than largest uint144).
     *
     * Counterpart to Solidity's `uint144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     *
     * _Available since v4.7._
     */
    function toUint144(uint256 value) internal pure returns (uint144) {
        require(value <= type(uint144).max, "SafeCast: value doesn't fit in 144 bits");
        return uint144(value);
    }

    /**
     * @dev Returns the downcasted uint136 from uint256, reverting on
     * overflow (when the input is greater than largest uint136).
     *
     * Counterpart to Solidity's `uint136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     *
     * _Available since v4.7._
     */
    function toUint136(uint256 value) internal pure returns (uint136) {
        require(value <= type(uint136).max, "SafeCast: value doesn't fit in 136 bits");
        return uint136(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v2.5._
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint120 from uint256, reverting on
     * overflow (when the input is greater than largest uint120).
     *
     * Counterpart to Solidity's `uint120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     *
     * _Available since v4.7._
     */
    function toUint120(uint256 value) internal pure returns (uint120) {
        require(value <= type(uint120).max, "SafeCast: value doesn't fit in 120 bits");
        return uint120(value);
    }

    /**
     * @dev Returns the downcasted uint112 from uint256, reverting on
     * overflow (when the input is greater than largest uint112).
     *
     * Counterpart to Solidity's `uint112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     *
     * _Available since v4.7._
     */
    function toUint112(uint256 value) internal pure returns (uint112) {
        require(value <= type(uint112).max, "SafeCast: value doesn't fit in 112 bits");
        return uint112(value);
    }

    /**
     * @dev Returns the downcasted uint104 from uint256, reverting on
     * overflow (when the input is greater than largest uint104).
     *
     * Counterpart to Solidity's `uint104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     *
     * _Available since v4.7._
     */
    function toUint104(uint256 value) internal pure returns (uint104) {
        require(value <= type(uint104).max, "SafeCast: value doesn't fit in 104 bits");
        return uint104(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     *
     * _Available since v4.2._
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint88 from uint256, reverting on
     * overflow (when the input is greater than largest uint88).
     *
     * Counterpart to Solidity's `uint88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     *
     * _Available since v4.7._
     */
    function toUint88(uint256 value) internal pure returns (uint88) {
        require(value <= type(uint88).max, "SafeCast: value doesn't fit in 88 bits");
        return uint88(value);
    }

    /**
     * @dev Returns the downcasted uint80 from uint256, reverting on
     * overflow (when the input is greater than largest uint80).
     *
     * Counterpart to Solidity's `uint80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     *
     * _Available since v4.7._
     */
    function toUint80(uint256 value) internal pure returns (uint80) {
        require(value <= type(uint80).max, "SafeCast: value doesn't fit in 80 bits");
        return uint80(value);
    }

    /**
     * @dev Returns the downcasted uint72 from uint256, reverting on
     * overflow (when the input is greater than largest uint72).
     *
     * Counterpart to Solidity's `uint72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     *
     * _Available since v4.7._
     */
    function toUint72(uint256 value) internal pure returns (uint72) {
        require(value <= type(uint72).max, "SafeCast: value doesn't fit in 72 bits");
        return uint72(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v2.5._
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint56 from uint256, reverting on
     * overflow (when the input is greater than largest uint56).
     *
     * Counterpart to Solidity's `uint56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     *
     * _Available since v4.7._
     */
    function toUint56(uint256 value) internal pure returns (uint56) {
        require(value <= type(uint56).max, "SafeCast: value doesn't fit in 56 bits");
        return uint56(value);
    }

    /**
     * @dev Returns the downcasted uint48 from uint256, reverting on
     * overflow (when the input is greater than largest uint48).
     *
     * Counterpart to Solidity's `uint48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     *
     * _Available since v4.7._
     */
    function toUint48(uint256 value) internal pure returns (uint48) {
        require(value <= type(uint48).max, "SafeCast: value doesn't fit in 48 bits");
        return uint48(value);
    }

    /**
     * @dev Returns the downcasted uint40 from uint256, reverting on
     * overflow (when the input is greater than largest uint40).
     *
     * Counterpart to Solidity's `uint40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     *
     * _Available since v4.7._
     */
    function toUint40(uint256 value) internal pure returns (uint40) {
        require(value <= type(uint40).max, "SafeCast: value doesn't fit in 40 bits");
        return uint40(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v2.5._
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint24 from uint256, reverting on
     * overflow (when the input is greater than largest uint24).
     *
     * Counterpart to Solidity's `uint24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     *
     * _Available since v4.7._
     */
    function toUint24(uint256 value) internal pure returns (uint24) {
        require(value <= type(uint24).max, "SafeCast: value doesn't fit in 24 bits");
        return uint24(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v2.5._
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     *
     * _Available since v2.5._
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     *
     * _Available since v3.0._
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int248 from int256, reverting on
     * overflow (when the input is less than smallest int248 or
     * greater than largest int248).
     *
     * Counterpart to Solidity's `int248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     *
     * _Available since v4.7._
     */
    function toInt248(int256 value) internal pure returns (int248 downcasted) {
        downcasted = int248(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 248 bits");
    }

    /**
     * @dev Returns the downcasted int240 from int256, reverting on
     * overflow (when the input is less than smallest int240 or
     * greater than largest int240).
     *
     * Counterpart to Solidity's `int240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     *
     * _Available since v4.7._
     */
    function toInt240(int256 value) internal pure returns (int240 downcasted) {
        downcasted = int240(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 240 bits");
    }

    /**
     * @dev Returns the downcasted int232 from int256, reverting on
     * overflow (when the input is less than smallest int232 or
     * greater than largest int232).
     *
     * Counterpart to Solidity's `int232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     *
     * _Available since v4.7._
     */
    function toInt232(int256 value) internal pure returns (int232 downcasted) {
        downcasted = int232(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 232 bits");
    }

    /**
     * @dev Returns the downcasted int224 from int256, reverting on
     * overflow (when the input is less than smallest int224 or
     * greater than largest int224).
     *
     * Counterpart to Solidity's `int224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     *
     * _Available since v4.7._
     */
    function toInt224(int256 value) internal pure returns (int224 downcasted) {
        downcasted = int224(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 224 bits");
    }

    /**
     * @dev Returns the downcasted int216 from int256, reverting on
     * overflow (when the input is less than smallest int216 or
     * greater than largest int216).
     *
     * Counterpart to Solidity's `int216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     *
     * _Available since v4.7._
     */
    function toInt216(int256 value) internal pure returns (int216 downcasted) {
        downcasted = int216(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 216 bits");
    }

    /**
     * @dev Returns the downcasted int208 from int256, reverting on
     * overflow (when the input is less than smallest int208 or
     * greater than largest int208).
     *
     * Counterpart to Solidity's `int208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     *
     * _Available since v4.7._
     */
    function toInt208(int256 value) internal pure returns (int208 downcasted) {
        downcasted = int208(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 208 bits");
    }

    /**
     * @dev Returns the downcasted int200 from int256, reverting on
     * overflow (when the input is less than smallest int200 or
     * greater than largest int200).
     *
     * Counterpart to Solidity's `int200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     *
     * _Available since v4.7._
     */
    function toInt200(int256 value) internal pure returns (int200 downcasted) {
        downcasted = int200(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 200 bits");
    }

    /**
     * @dev Returns the downcasted int192 from int256, reverting on
     * overflow (when the input is less than smallest int192 or
     * greater than largest int192).
     *
     * Counterpart to Solidity's `int192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     *
     * _Available since v4.7._
     */
    function toInt192(int256 value) internal pure returns (int192 downcasted) {
        downcasted = int192(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 192 bits");
    }

    /**
     * @dev Returns the downcasted int184 from int256, reverting on
     * overflow (when the input is less than smallest int184 or
     * greater than largest int184).
     *
     * Counterpart to Solidity's `int184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     *
     * _Available since v4.7._
     */
    function toInt184(int256 value) internal pure returns (int184 downcasted) {
        downcasted = int184(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 184 bits");
    }

    /**
     * @dev Returns the downcasted int176 from int256, reverting on
     * overflow (when the input is less than smallest int176 or
     * greater than largest int176).
     *
     * Counterpart to Solidity's `int176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     *
     * _Available since v4.7._
     */
    function toInt176(int256 value) internal pure returns (int176 downcasted) {
        downcasted = int176(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 176 bits");
    }

    /**
     * @dev Returns the downcasted int168 from int256, reverting on
     * overflow (when the input is less than smallest int168 or
     * greater than largest int168).
     *
     * Counterpart to Solidity's `int168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     *
     * _Available since v4.7._
     */
    function toInt168(int256 value) internal pure returns (int168 downcasted) {
        downcasted = int168(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 168 bits");
    }

    /**
     * @dev Returns the downcasted int160 from int256, reverting on
     * overflow (when the input is less than smallest int160 or
     * greater than largest int160).
     *
     * Counterpart to Solidity's `int160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     *
     * _Available since v4.7._
     */
    function toInt160(int256 value) internal pure returns (int160 downcasted) {
        downcasted = int160(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 160 bits");
    }

    /**
     * @dev Returns the downcasted int152 from int256, reverting on
     * overflow (when the input is less than smallest int152 or
     * greater than largest int152).
     *
     * Counterpart to Solidity's `int152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     *
     * _Available since v4.7._
     */
    function toInt152(int256 value) internal pure returns (int152 downcasted) {
        downcasted = int152(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 152 bits");
    }

    /**
     * @dev Returns the downcasted int144 from int256, reverting on
     * overflow (when the input is less than smallest int144 or
     * greater than largest int144).
     *
     * Counterpart to Solidity's `int144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     *
     * _Available since v4.7._
     */
    function toInt144(int256 value) internal pure returns (int144 downcasted) {
        downcasted = int144(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 144 bits");
    }

    /**
     * @dev Returns the downcasted int136 from int256, reverting on
     * overflow (when the input is less than smallest int136 or
     * greater than largest int136).
     *
     * Counterpart to Solidity's `int136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     *
     * _Available since v4.7._
     */
    function toInt136(int256 value) internal pure returns (int136 downcasted) {
        downcasted = int136(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 136 bits");
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128 downcasted) {
        downcasted = int128(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 128 bits");
    }

    /**
     * @dev Returns the downcasted int120 from int256, reverting on
     * overflow (when the input is less than smallest int120 or
     * greater than largest int120).
     *
     * Counterpart to Solidity's `int120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     *
     * _Available since v4.7._
     */
    function toInt120(int256 value) internal pure returns (int120 downcasted) {
        downcasted = int120(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 120 bits");
    }

    /**
     * @dev Returns the downcasted int112 from int256, reverting on
     * overflow (when the input is less than smallest int112 or
     * greater than largest int112).
     *
     * Counterpart to Solidity's `int112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     *
     * _Available since v4.7._
     */
    function toInt112(int256 value) internal pure returns (int112 downcasted) {
        downcasted = int112(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 112 bits");
    }

    /**
     * @dev Returns the downcasted int104 from int256, reverting on
     * overflow (when the input is less than smallest int104 or
     * greater than largest int104).
     *
     * Counterpart to Solidity's `int104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     *
     * _Available since v4.7._
     */
    function toInt104(int256 value) internal pure returns (int104 downcasted) {
        downcasted = int104(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 104 bits");
    }

    /**
     * @dev Returns the downcasted int96 from int256, reverting on
     * overflow (when the input is less than smallest int96 or
     * greater than largest int96).
     *
     * Counterpart to Solidity's `int96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     *
     * _Available since v4.7._
     */
    function toInt96(int256 value) internal pure returns (int96 downcasted) {
        downcasted = int96(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 96 bits");
    }

    /**
     * @dev Returns the downcasted int88 from int256, reverting on
     * overflow (when the input is less than smallest int88 or
     * greater than largest int88).
     *
     * Counterpart to Solidity's `int88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     *
     * _Available since v4.7._
     */
    function toInt88(int256 value) internal pure returns (int88 downcasted) {
        downcasted = int88(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 88 bits");
    }

    /**
     * @dev Returns the downcasted int80 from int256, reverting on
     * overflow (when the input is less than smallest int80 or
     * greater than largest int80).
     *
     * Counterpart to Solidity's `int80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     *
     * _Available since v4.7._
     */
    function toInt80(int256 value) internal pure returns (int80 downcasted) {
        downcasted = int80(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 80 bits");
    }

    /**
     * @dev Returns the downcasted int72 from int256, reverting on
     * overflow (when the input is less than smallest int72 or
     * greater than largest int72).
     *
     * Counterpart to Solidity's `int72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     *
     * _Available since v4.7._
     */
    function toInt72(int256 value) internal pure returns (int72 downcasted) {
        downcasted = int72(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 72 bits");
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64 downcasted) {
        downcasted = int64(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 64 bits");
    }

    /**
     * @dev Returns the downcasted int56 from int256, reverting on
     * overflow (when the input is less than smallest int56 or
     * greater than largest int56).
     *
     * Counterpart to Solidity's `int56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     *
     * _Available since v4.7._
     */
    function toInt56(int256 value) internal pure returns (int56 downcasted) {
        downcasted = int56(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 56 bits");
    }

    /**
     * @dev Returns the downcasted int48 from int256, reverting on
     * overflow (when the input is less than smallest int48 or
     * greater than largest int48).
     *
     * Counterpart to Solidity's `int48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     *
     * _Available since v4.7._
     */
    function toInt48(int256 value) internal pure returns (int48 downcasted) {
        downcasted = int48(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 48 bits");
    }

    /**
     * @dev Returns the downcasted int40 from int256, reverting on
     * overflow (when the input is less than smallest int40 or
     * greater than largest int40).
     *
     * Counterpart to Solidity's `int40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     *
     * _Available since v4.7._
     */
    function toInt40(int256 value) internal pure returns (int40 downcasted) {
        downcasted = int40(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 40 bits");
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32 downcasted) {
        downcasted = int32(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 32 bits");
    }

    /**
     * @dev Returns the downcasted int24 from int256, reverting on
     * overflow (when the input is less than smallest int24 or
     * greater than largest int24).
     *
     * Counterpart to Solidity's `int24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     *
     * _Available since v4.7._
     */
    function toInt24(int256 value) internal pure returns (int24 downcasted) {
        downcasted = int24(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 24 bits");
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16 downcasted) {
        downcasted = int16(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 16 bits");
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8 downcasted) {
        downcasted = int8(value);
        require(downcasted == value, "SafeCast: value doesn't fit in 8 bits");
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     *
     * _Available since v3.0._
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

File 18 of 31 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

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

File 19 of 31 : ERC721MultiCollection.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./interfaces/IERC721MultiCollection.sol";

/// @title ERC721 Multi collection extension implementation - Part of the Particle Protocol V1.1
/// @author Particle Collection - valdi.eth
/// See {IERC721MultiCollection}.
/// @dev Based on OpenZeppelin's ERC721Enumerable.sol, extending it to allow for multiple collections.
abstract contract ERC721MultiCollection is ERC721, IERC721MultiCollection {
    uint256 public immutable MAX_COLLECTION_SIZE;

    // Mapping owner address to token count per collection
    // owner => collection id => balance
    mapping(address =>  mapping(uint256 => uint256)) private _collectionBalances;
    // Mapping from owner to list of owned token IDs per collection
    // owner => collection id => token index => token id
    mapping(address => mapping(uint256 => mapping(uint256 => uint256))) private _collectionOwnedTokens;
    // Mapping from token ID to index of the owner tokens list per collection
    // owner => collectionId => tokenId => index
    mapping(address => mapping(uint256 => mapping(uint256 => uint256))) private _collectionOwnedTokensIndex;
    // Mapping from collection id to number of tokens on that collection
    mapping(uint256 => uint256) private _tokensPerCollection;

    /// bool indicating if adding new collections is forbidden;
    /// default behavior is to allow new collections
    bool private _newCollectionsForbidden;

    /// next collection ID to be created
    uint256 private _nextCollectionId;

    modifier onlyValidCollectionId(uint256 _collectionId) {
        if (!collectionExists(_collectionId)) {
            revert InvalidCollectionId(_collectionId);
        }
        _;
    }

    constructor(uint256 maxCollectionSize) {
        MAX_COLLECTION_SIZE = maxCollectionSize;
    }

    /**  
    * @dev External function to determine if a collection exists.
    */
    function collectionExists(uint256 collectionId) public view override returns (bool) {
        return collectionId < _nextCollectionId;
    }

    /**  
    * @dev Determines if new collections can be added to this contract.
    */
    function _newCollectionsAllowed() internal view returns (bool) {
        return !_newCollectionsForbidden;
    }

    /**
     * @dev Determines if a collection size is valid.
     */
    function _validCollectionSize(uint256 collectionSize) internal view returns (bool) {
        return collectionSize > 0 && collectionSize <= MAX_COLLECTION_SIZE;
    }

    /**  
    * @dev Adds a new collection and returns the collection ID.
    */
    function _addCollection(uint256 collectionSize) internal returns (uint256){
        require(!_newCollectionsForbidden, "New collections forbidden");
        require(_validCollectionSize(collectionSize), "Number of particles must be > 0 && <= MAX_COLLECTION_SIZE");

        uint256 collectionId = _nextCollectionId;
        
        _nextCollectionId++;

        emit CollectionAdded(collectionId);
        return collectionId;
    }

    /**
     * @notice returns the total number of collections.
     */
    function numberOfCollections() public view returns (uint256) {
        return _nextCollectionId;
    }

    /**
     * @notice Balance for `owner` in `collectionId`
     */
    function balanceOf(address owner, uint256 collectionId) public view returns (uint256) {
        if (owner == address(0)) {
            revert InvalidOwnerAddress();
        }
        return _collectionBalances[owner][collectionId];
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract for `collectionId`.
     */
    function tokenTotalSupply(uint256 collectionId) external view returns (uint256) {
        return _tokensPerCollection[collectionId];
    }

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list on `collectionId`.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index, uint256 collectionId) external view returns (uint256) {
        require(index < balanceOf(owner, collectionId), "ERC721MultiCollection: owner index out of bounds");
        return _collectionOwnedTokens[owner][collectionId][index];
    }

    /**
     * @notice Forever forbids new collections from being added to this contract.
     */
    function _forbidNewCollections()
        internal
    {
        require(!_newCollectionsForbidden, "Already forbidden");
        _newCollectionsForbidden = true;

        emit NewCollectionsForbidden();
    }

    /**
     * @notice Get the collection ID for a given token ID
     */
    function tokenIdToCollectionId(uint256 _tokenId) public view returns (uint256 collectionId) {
        return _tokenId / MAX_COLLECTION_SIZE;
    }

    /**
     * @notice Burns `tokensToBurn` tokens in a collection for user `owner`.
     * @notice It does not let the caller specify which tokens to burn.
     *
     * @dev does not check for approval or ownership of the caller.
     * Checking is left to the extended contract if needed according to it's own logic.
     */
    function _burn(address owner, uint256 collectionId, uint256 tokensToBurn) internal returns (uint256 tokensBurnt) {
        uint256 balance = _collectionBalances[owner][collectionId];

        if (balance < tokensToBurn) {
            revert InvalidBurnAmount(owner, collectionId, tokensToBurn, balance);
        }

        for (uint256 i = 0; i < tokensToBurn;) {
            uint256 tokenId = _collectionOwnedTokens[owner][collectionId][balance - 1 - i]; // Burn token at index balance - 1 - i, preventing swapping on each burn
            _burn(tokenId);

            unchecked { i++; }
        }

        return tokensToBurn;
    }

    /**
     * @notice Burns `tokens` array in a collection for user `owner`.
     * @notice It lets the caller specify which tokens to burn.
     *
     * @dev does not check for approval or ownership of the caller.
     * Checking is left to the extended contract if needed according to it's own logic.
     */
    function _burn(address owner, uint256 collectionId, uint256[] calldata tokens) internal returns (uint256 tokensBurnt) {
        uint256 nOfTokens = tokens.length;

        for (uint256 i = 0; i < nOfTokens;) {
            uint256 tokenId = tokens[i];

            if (ownerOf(tokenId) != owner) {
                revert InvalidBurnOwner(owner, tokenId);
            }
            if (tokenIdToCollectionId(tokenId) != collectionId) {
                revert InvalidCollectionId(collectionId);
            }

            _burn(tokenId);

            unchecked { i++; }
        }

        return nOfTokens;
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerCollectionEnumeration(address to, uint256 tokenId, uint256 collectionId) private {
        uint256 length = _collectionBalances[to][collectionId];
        _collectionOwnedTokens[to][collectionId][length] = tokenId;
        _collectionOwnedTokensIndex[to][collectionId][tokenId] = length;

        _collectionBalances[to][collectionId] += 1;
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_collectionOwnedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _collectionOwnedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerCollectionEnumeration(address from, uint256 tokenId, uint256 collectionId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _collectionBalances[from][collectionId] - 1;
        uint256 tokenIndex = _collectionOwnedTokensIndex[from][collectionId][tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _collectionOwnedTokens[from][collectionId][lastTokenIndex];

            _collectionOwnedTokens[from][collectionId][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _collectionOwnedTokensIndex[from][collectionId][lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _collectionOwnedTokensIndex[from][collectionId][tokenId];
        delete _collectionOwnedTokens[from][collectionId][lastTokenIndex];

        _collectionBalances[from][collectionId] -= 1;
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId,
        uint256 batchSize
    ) internal virtual override(ERC721) {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);

        uint256 collectionId = tokenIdToCollectionId(tokenId);

        if (from != address(0)) {
            _removeTokenFromOwnerCollectionEnumeration(from, tokenId, collectionId);
        } else {
            _tokensPerCollection[collectionId] += 1;
        }
        if (to != address(0)) {
            _addTokenToOwnerCollectionEnumeration(to, tokenId, collectionId);
        } else {
            _tokensPerCollection[collectionId] -= 1;
        }
    }
}

File 20 of 31 : IPRTCLVotes.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

/// @title Interface for using {PRTCLCollections721V1} as voting tokens per collection.
/// @author Particle Collection - valdi.eth
/// @notice Manages base voting data
/// @dev Modified version of OpenZeppelin's {IVotes} to accommodate multiple collections.
interface IPRTCLVotes {
    /**
     * @dev Emitted when an account changes their delegate.
     */
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate, uint256 collectionId);

    /**
     * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes.
     */
    event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance, uint256 collectionId);

    /**
     * @dev Returned when checking voting power for a block number that is not yet mined.
     */
    error BlockNotMined();

    /**
     * @dev Returns the current amount of votes that `account` has for collection `collectionId`.
     */
    function getVotes(address account, uint256 collectionId) external view returns (uint256);

    /**
     * @dev Returns the amount of votes that `account` had at the end of a past block (`blockNumber`)
     * for collection `collectionId`.
     */
    function getPastVotes(address account, uint256 blockNumber, uint256 collectionId) external view returns (uint256);

    /**
     * @dev Returns the total supply of votes available at the end of a past block (`blockNumber`),
     * for collection `collectionId`.
     *
     * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.
     * Votes that have not been delegated are still part of total supply, even though they would not participate in a
     * vote.
     */
    function getPastTotalSupply(uint256 blockNumber, uint256 collectionId) external view returns (uint256);

    /**
     * @dev Returns the current total supply of votes for a given collection.
     */
    function getTotalSupply(uint256 collectionId) external view returns (uint256);

    /**
     * @dev Delegates `collectionId` collection votes from the sender to `delegatee`.
     */
    function delegate(address delegatee, uint256 collectionId) external;

    /**
     * @dev Returns the delegate that `account` has chosen for `collectionId` collection.
     */
    function delegates(address account, uint256 collectionId) external view returns (address);
}

File 21 of 31 : PRTCLCoreERC721Votes.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

import "../ERC721MultiCollection.sol";
import "./PRTCLVotes.sol";

/**
 * @dev Extension of ERC721MultiCollection to support voting and delegation as implemented by {PRTCLVotes}, where each individual NFT counts
 * as 1 vote unit within a collection.
 *
 * Tokens do not count as votes until they are delegated, because votes must be tracked which incurs an additional cost
 * on every transfer. Token holders can either delegate to a trusted representative who will decide how to make use of
 * the votes in governance decisions, or they can delegate to themselves to be their own representative.
 *
 * @author Particle Collection - valdi.eth
 */
abstract contract PRTCLCoreERC721Votes is ERC721MultiCollection, PRTCLVotes {
    using ECDSA for bytes32;

    /**
     * @notice Used to validate delegation addresses
     */
    address public delegateSigner;

    /**
     * @dev Emitted when the signer address is updated.
     */
    event SignerUpdated(address signer);

    /**
     * @dev Returned when a user tries to delegate with an invalid signature.
     */
    error InvalidSignature();

    /**
     * @dev Initializes the contract by setting a `delegateSigner`.
     */
    constructor(address _delegateSigner) {
        delegateSigner = _delegateSigner;
    }

    /**
     * @dev Update signer address.
     */
    function _setDelegationSigner(address _signer) internal {
        require(_signer != address(0), "Must input non-zero address");
        delegateSigner = _signer;

        emit SignerUpdated(_signer);
    }

    /**
     * @dev See {ERC721-_afterTokenTransfer}. Adjusts votes when tokens are transferred.
     *
     * Emits a {IPRTCLVotes-DelegateVotesChanged} event.
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        _transferVotingUnits(from, to, batchSize, tokenIdToCollectionId(firstTokenId));
        super._afterTokenTransfer(from, to, firstTokenId, batchSize);
    }

    /**
     * @dev Returns the balance of `account` for collection `collectionId`.
     * 1 vote per token.
     */
    function _getVotingUnits(address account, uint256 collectionId) internal view virtual override returns (uint256) {
        return balanceOf(account, collectionId);
    }

    /**
     * @dev Override regular delegation to disable it
     */
    function delegate(address /* delegatee */, uint256 /* collectionId */) public virtual override {
        revert("PRTCLCoreERC721Votes: regular delegation disabled. Please use delegation with signature.");
    }

    /**
     * @dev Delegation that only allows whitelisted addresses
     */
    function delegate(address delegatee, uint256 collectionId, bytes memory signature, uint256 expirationBlock) public {
        if (!verifyDelegation(signature, expirationBlock, msg.sender, delegatee, collectionId)) {
            revert InvalidSignature();
        }
        super.delegate(delegatee, collectionId);
    }

    /**
     * @dev Verify signature for delegation
     */
    function verifyDelegation(bytes memory _signature, uint256 _expirationBlock, address _delegate, address _delegatee, uint256 _collectionId) public 
    view returns (bool) {
        bytes32 messageHash = keccak256(abi.encodePacked(_delegate, _delegatee, _collectionId, _expirationBlock));
        return block.number < _expirationBlock && delegateSigner == messageHash.toEthSignedMessageHash().recover(_signature);
    }
}

File 22 of 31 : PRTCLVotes.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Checkpoints.sol";
import "./IPRTCLVotes.sol";

/**
 * @dev Modified version of OpenZeppelin's {Votes} to accommodate multiple collections.
 *
 * @author Particle Collection - valdi.eth
 */
abstract contract PRTCLVotes is IPRTCLVotes, Context {
    using Checkpoints for Checkpoints.History;

    mapping(uint256 => mapping(address => address)) private _collectionDelegation;
    mapping(uint256 => mapping(address => Checkpoints.History)) private _collectionDelegateCheckpoints;
    mapping(uint256 => Checkpoints.History) private _collectionTotalCheckpoints;

    /**
     * @dev Returns the current amount of votes that `account` has for a given collection.
     */
    function getVotes(address account, uint256 collectionId) public view virtual override returns (uint256) {
        return _collectionDelegateCheckpoints[collectionId][account].latest();
    }

    /**
     * @dev Returns the amount of votes that `account` had at the end of a past block (`blockNumber`) for a given collection.
     *
     * Requirements:
     *
     * - `blockNumber` must have been already mined
     */
    function getPastVotes(address account, uint256 blockNumber, uint256 collectionId) public view virtual override returns (uint256) {
        if (blockNumber >= block.number) {
            revert BlockNotMined();
        }
        return _collectionDelegateCheckpoints[collectionId][account].getAtProbablyRecentBlock(blockNumber);
    }

    /**
     * @dev Returns the total supply of votes available at the end of a past block (`blockNumber`) for a given collection.
     *
     * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.
     * Votes that have not been delegated are still part of total supply, even though they would not participate in a
     * vote.
     *
     * Requirements:
     *
     * - `blockNumber` must have been already mined
     */
    function getPastTotalSupply(uint256 blockNumber, uint256 collectionId) public view virtual override returns (uint256) {
        if (blockNumber >= block.number) {
            revert BlockNotMined();
        }
        return _collectionTotalCheckpoints[collectionId].getAtProbablyRecentBlock(blockNumber);
    }

    /**
     * @dev Returns the current total supply of votes for a given collection.
     */
    function getTotalSupply(uint256 collectionId) public view virtual override returns (uint256) {
        return _collectionTotalCheckpoints[collectionId].latest();
    }

    /**
     * @dev Returns the delegate that `account` has chosen for a given collection.
     */
    function delegates(address account, uint256 collectionId) public view virtual override returns (address) {
        return _collectionDelegation[collectionId][account];
    }

    /**
     * @dev Delegates votes from the sender to `delegatee` for a given collection.
     */
    function delegate(address delegatee, uint256 collectionId) public virtual override {
        address account = _msgSender();
        address oldDelegate = delegates(account, collectionId);
        _collectionDelegation[collectionId][account] = delegatee;

        emit DelegateChanged(account, oldDelegate, delegatee, collectionId);
        _moveDelegateVotes(oldDelegate, delegatee, _getVotingUnits(account, collectionId), collectionId);
    }

    /**
     * @dev Transfers, mints, or burns voting units. To register a mint, `from` should be zero. To register a burn, `to`
     * should be zero. Total supply of voting units will be adjusted with mints and burns.
     */
    function _transferVotingUnits(
        address from,
        address to,
        uint256 amount,
        uint256 collectionId
    ) internal virtual {
        if (from == address(0)) {
            _collectionTotalCheckpoints[collectionId].push(_add, amount);
        }
        if (to == address(0)) {
            _collectionTotalCheckpoints[collectionId].push(_subtract, amount);
        }
        _moveDelegateVotes(delegates(from, collectionId), delegates(to, collectionId), amount, collectionId);
    }

    /**
     * @dev Moves delegated votes from one delegate to another for a given collection.
     */
    function _moveDelegateVotes(
        address from,
        address to,
        uint256 amount,
        uint256 collectionId
    ) private {
        if (from != to && amount > 0) {
            if (from != address(0)) {
                (uint256 oldValue, uint256 newValue) = _collectionDelegateCheckpoints[collectionId][from].push(_subtract, amount);
                emit DelegateVotesChanged(from, oldValue, newValue, collectionId);
            }
            if (to != address(0)) {
                (uint256 oldValue, uint256 newValue) = _collectionDelegateCheckpoints[collectionId][to].push(_add, amount);
                emit DelegateVotesChanged(to, oldValue, newValue, collectionId);
            }
        }
    }

    function _add(uint256 a, uint256 b) private pure returns (uint256) {
        return a + b;
    }

    function _subtract(uint256 a, uint256 b) private pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Must return the voting units held by an account for a given collection.
     */
    function _getVotingUnits(address owner, uint256 collectionId) internal view virtual returns (uint256);
}

File 23 of 31 : IERC721MultiCollection.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

/// @title ERC721Multi collection interface
/// @author Particle Collection - valdi.eth
/// @notice Adds public facing and multi collection balanceOf and collectionId to tokenId functions
/// @dev This implements an optional extension of {ERC721} that adds
/// support for multiple collections and enumerability of all the
/// token ids in the contract as well as all token ids owned by each account per collection.
interface IERC721MultiCollection is IERC721 {
    /// @notice Collection ID `_collectionId` added
    event CollectionAdded(uint256 indexed collectionId);

    /// @notice New collections forbidden
    event NewCollectionsForbidden();

    /// @dev Returned when trying to interact with a non existent collection, or redeeming funds for a sale with a token from a different collection.
    error InvalidCollectionId(uint256 collectionId);

    /// @dev Returned when trying to check balance of the zero address.
    error InvalidOwnerAddress();

    /// @dev Returned when trying to burn more than the balance for the owner in the given collection.
    error InvalidBurnAmount(address owner, uint256 collectionId, uint256 tokensToBurn, uint256 balance);

    /// @dev Returned when trying to burn a token that is not owned by owner in the given collection.
    error InvalidBurnOwner(address owner, uint256 tokenId);

    /// @dev Determine if a collection exists.
    function collectionExists(uint256 collectionId) external view returns (bool);

    /// @notice Balance for `owner` in `collectionId`
    function balanceOf(address owner, uint256 collectionId) external view returns (uint256);

    /// @notice Get the collection ID for a given token ID
    function tokenIdToCollectionId(uint256 tokenId) external view returns (uint256 collectionId);

    /// @notice returns the total number of collections.
    function numberOfCollections() external view returns (uint256);

    /// @dev Returns the total amount of tokens stored by the contract for `collectionId`.
    function tokenTotalSupply(uint256 collectionId) external view returns (uint256);

    /// @dev Returns a token ID owned by `owner` at a given `index` of its token list on `collectionId`.
    /// Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
    function tokenOfOwnerByIndex(address owner, uint256 index, uint256 collectionId) external view returns (uint256);

    /// @notice returns maximum size for collections.
    function MAX_COLLECTION_SIZE() external view returns (uint256);
}

File 24 of 31 : IManifold.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;

/// @author: manifold.xyz

/**
 * @dev Royalty interface for creator core classes
 */
interface IManifold {

    /**
     * @dev Get royalites of a token.  Returns list of receivers and basisPoints
     *
     *  bytes4(keccak256('getRoyalties(uint256)')) == 0xbb3bafd6
     *
     *  => 0xbb3bafd6 = 0xbb3bafd6
     */
    function getRoyalties(uint256 tokenId) external view returns (address payable[] memory, uint256[] memory);
}

File 25 of 31 : IPRTCLCollections721V1.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

/// use the Royalty Registry's IManifold interface for token royalties
import "./IManifold.sol";
import "./IERC721MultiCollection.sol";

/// @title Interface for Core ERC721 contract for multiple collections
/// @author Particle Collection - valdi.eth
/// @notice Manages all collections tokens
/// @dev Exposes all public functions and events needed by the Particle Collection's smart contracts
/// @dev Adheres to the ERC721 standard, ERC721MultiCollection extension and Manifold for secondary royalties
interface IPRTCLCollections721V1 is IERC721, IERC721MultiCollection, IManifold {
    /// @notice Collection ID `_collectionId` updated
    event CollectionDataUpdated(uint256 indexed _collectionId);

    /// @notice Collection ID `_collectionId` size updated
    event CollectionSizeUpdated(uint256 indexed _collectionId, uint256 _size);

    /// @notice Collection ID `_collectionId` sold through governance
    event CollectionSold(uint256 indexed _collectionId, address _buyer);

    /// @notice Collection ID `_collectionId` active
    event CollectionActive(uint256 indexed _collectionId);

    /// @notice Collection ID `_collectionId` not active
    event CollectionInactive(uint256 indexed _collectionId);

    /// @notice Collection ID `_collectionId` royalties updated
    event CollectionRoyaltiesUpdated(uint256 indexed _collectionId);

    /// @notice Collection ID `_collectionId` primary split updated
    event CollectionPrimarySplitUpdated(uint256 indexed _collectionId);

    /// @notice Collection ID `_collectionId` fully minted
    event CollectionFullyMinted(uint256 indexed _collectionId);

    /// @notice Updated base uri
    event BaseURIUpdated(string _baseURI);

    /// @notice Royalties addresses updated
    event RoyaltiesAddressesUpdated(address _FJMAddress, address _DAOAddress);

    /// @notice Randomizer contract updated
    event RandomizerUpdated(address _randomizer);

    /// @notice Collection seeds set
    event CollectionSeedsSet(uint256 _collectionId, uint24 _seed1, uint24 _seed2);

    /// @notice Returned when a collection cannot be sold, as it was already sold
    error AlreadySold();

    /// @notice Returned when querying a non-existent token id
    error InvalidTokenId(uint256 tokenId);

    /// @notice Returned when querying coordinates for a token in a collection that is not revealed yet
    error CollectionNotRevealed(uint256 collectionId);

    /// @notice Returned when trying to mint an invalid amount of tokens (0 or more than allowed)
    error InvalidMintAmount(uint256 amount);

    /// @notice Returned when trying to mint a token for a collection that is not yet active
    error CollectionNotActive(uint256 collectionId);

    /// @notice Returned when trying to call a function without the required role
    error NotAllowed();

    ///
    /// Collection data
    ///

    /// @notice Artist address for collection ID `_collectionId`
    function collectionIdToArtistAddress(uint256 _collectionId) external view returns (address payable);

    /// @notice Get the primary revenue splits for a given collection ID and sale price
    /// @dev Used by minter contract
    function getPrimaryRevenueSplits(uint256 _collectionId, uint256 _price) external view
        returns (
            uint256 FJMRevenue_,
            address payable FJMAddress_,
            uint256 DAORevenue_,
            address payable DAOAddress_,
            uint256 artistRevenue_,
            address payable artistAddress_
        );

    /// @notice Main collection data
    function collectionData(uint256 _collectionId) external view returns (
        uint256 nParticles,
        uint256 maxParticles,
        bool active,
        string memory collectionName,
        bool sold,
        uint24[] memory seeds,
        uint256 setSeedsAfterBlock
    );

    /// @notice Check if the collection can be sold
    /// @dev Used by governance contract
    function collectionCanBeSold(uint256 _collectionId) external view returns (bool);

    /// @notice Get the proceeds for a given collection ID, sale price, sale comission and number of tokens
    /// @dev Used by governance contract
    function proceeds(uint256 _collectionId, uint256 _salePrice, uint256 _commission, uint256 _tokens) external view returns (uint256);

    /// @notice Get coordinates within an artwork for a given token ID
    function getCoordinate(uint256 _tokenId) external view returns (uint256);

    ///
    /// Collection interactions
    ///

    /// @notice Mark a collection as sold
    /// @dev Only callable by the governance role
    function markCollectionSold(uint256 _collectionId, address _buyer) external;
    
    /// @notice Mint a new token.
    /// Used by minter contract and BE infrastructure when handling fiat payments
    /// @dev Only callable by the minter role
    function mint(address _to, uint256 _collectionId, uint24 _amount) external returns (uint256 tokenId);

    /// @notice Burn tokensToRedeem tokens owned by `owner` in collection `_collectionId`
    /// Used when redeeming tokens for sale proceeds
    /// @dev Only callable by the governance role
    function burn(address owner, uint256 collectionId, uint256 tokensToRedeem) external returns (uint256 tokensBurnt);

    /// @notice Burn `tokens` owned by `owner`
    /// Used when redeeming tokens for sale proceeds
    /// @dev Only callable by the governance role
    function burn(address tokensOwner, uint256 collectionId, uint256[] calldata tokens) external returns (uint256 tokensBurnt);

    /// @notice Set the random prime seeds for a given collection ID, used to calculate token coordinates
    /// @dev Only callable by the Randomizer contract
    function setCollectionSeeds(uint256 _collectionId, uint24[2] calldata _seeds) external;
}

File 26 of 31 : IRandomizerV1.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

/// @title Interface for the Randomizer contract version 1
/// @author Particle Collection - valdi.eth
/// @notice Sets the random prime seeds for the collection on the core ERC721 contract
interface IRandomizerV1 {
    /// @notice Sets random prime seeds for the collection
    /// @dev Only callable by the core ERC721 contract
    function setCollectionSeeds(uint256 _collectionId) external;
}

File 27 of 31 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

File 28 of 31 : Constants.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

File 29 of 31 : RevokableDefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {RevokableOperatorFilterer} from "./RevokableOperatorFilterer.sol";
import {CANONICAL_CORI_SUBSCRIPTION, CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS} from "./lib/Constants.sol";
/**
 * @title  RevokableDefaultOperatorFilterer
 * @notice Inherits from RevokableOperatorFilterer and automatically subscribes to the default OpenSea subscription.
 *         Note that OpenSea will disable creator earnings enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */

abstract contract RevokableDefaultOperatorFilterer is RevokableOperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor()
        RevokableOperatorFilterer(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS, CANONICAL_CORI_SUBSCRIPTION, true)
    {}
}

File 30 of 31 : RevokableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {UpdatableOperatorFilterer} from "./UpdatableOperatorFilterer.sol";
import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  RevokableOperatorFilterer
 * @notice This contract is meant to allow contracts to permanently skip OperatorFilterRegistry checks if desired. The
 *         Registry itself has an "unregister" function, but if the contract is ownable, the owner can re-register at
 *         any point. As implemented, this abstract contract allows the contract owner to permanently skip the
 *         OperatorFilterRegistry checks by calling revokeOperatorFilterRegistry. Once done, the registry
 *         address cannot be further updated.
 *         Note that OpenSea will still disable creator earnings enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */
abstract contract RevokableOperatorFilterer is UpdatableOperatorFilterer {
    /// @dev Emitted when the registry has already been revoked.
    error RegistryHasBeenRevoked();
    /// @dev Emitted when the initial registry address is attempted to be set to the zero address.
    error InitialRegistryAddressCannotBeZeroAddress();

    event OperatorFilterRegistryRevoked();

    bool public isOperatorFilterRegistryRevoked;

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe)
        UpdatableOperatorFilterer(_registry, subscriptionOrRegistrantToCopy, subscribe)
    {
        // don't allow creating a contract with a permanently revoked registry
        if (_registry == address(0)) {
            revert InitialRegistryAddressCannotBeZeroAddress();
        }
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be permanently bypassed, and the address cannot be updated again. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry) public override {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
        emit OperatorFilterRegistryAddressUpdated(newRegistry);
    }

    /**
     * @notice Revoke the OperatorFilterRegistry address, permanently bypassing checks. OnlyOwner.
     */
    function revokeOperatorFilterRegistry() public {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        // set to zero address to bypass checks
        operatorFilterRegistry = IOperatorFilterRegistry(address(0));
        isOperatorFilterRegistryRevoked = true;
        emit OperatorFilterRegistryRevoked();
    }
}

File 31 of 31 : UpdatableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  UpdatableOperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry. This contract allows the Owner to update the
 *         OperatorFilterRegistry address via updateOperatorFilterRegistryAddress, including to the zero address,
 *         which will bypass registry checks.
 *         Note that OpenSea will still disable creator earnings enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 * @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 UpdatableOperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);
    /// @dev Emitted when someone other than the owner is trying to call an only owner function.
    error OnlyOwner();

    event OperatorFilterRegistryAddressUpdated(address newRegistry);

    IOperatorFilterRegistry public operatorFilterRegistry;

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe) {
        IOperatorFilterRegistry registry = IOperatorFilterRegistry(_registry);
        operatorFilterRegistry = registry;
        // 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(registry).code.length > 0) {
            if (subscribe) {
                registry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    registry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    registry.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if the operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // 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) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if the operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be bypassed. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry) public virtual {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
        emit OperatorFilterRegistryAddressUpdated(newRegistry);
    }

    /**
     * @dev Assume the contract has an owner, but leave specific Ownable implementation up to inheriting contract.
     */
    function owner() public view virtual returns (address);

    /**
     * @dev A helper function to check if the operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        IOperatorFilterRegistry registry = operatorFilterRegistry;
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(registry) != address(0) && address(registry).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!registry.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 400
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_bURI","type":"string"},{"internalType":"address","name":"_delegationSigner","type":"address"},{"internalType":"address payable","name":"_FJMAddress","type":"address"},{"internalType":"address payable","name":"_DAOAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadySold","type":"error"},{"inputs":[],"name":"BlockNotMined","type":"error"},{"inputs":[{"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"CollectionNotActive","type":"error"},{"inputs":[{"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"CollectionNotRevealed","type":"error"},{"inputs":[],"name":"InitialRegistryAddressCannotBeZeroAddress","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"collectionId","type":"uint256"},{"internalType":"uint256","name":"tokensToBurn","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"InvalidBurnAmount","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"InvalidBurnOwner","type":"error"},{"inputs":[{"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"InvalidCollectionId","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"InvalidMintAmount","type":"error"},{"inputs":[],"name":"InvalidOwnerAddress","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"InvalidTokenId","type":"error"},{"inputs":[],"name":"NotAllowed","type":"error"},{"inputs":[],"name":"OnlyOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"RegistryHasBeenRevoked","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":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"BaseURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"CollectionActive","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"CollectionAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"CollectionDataUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"CollectionFullyMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"CollectionInactive","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"CollectionPrimarySplitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"CollectionRoyaltiesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_collectionId","type":"uint256"},{"indexed":false,"internalType":"uint24","name":"_seed1","type":"uint24"},{"indexed":false,"internalType":"uint24","name":"_seed2","type":"uint24"}],"name":"CollectionSeedsSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_collectionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_size","type":"uint256"}],"name":"CollectionSizeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_collectionId","type":"uint256"},{"indexed":false,"internalType":"address","name":"_buyer","type":"address"}],"name":"CollectionSold","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"NewCollectionsForbidden","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRegistry","type":"address"}],"name":"OperatorFilterRegistryAddressUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"OperatorFilterRegistryRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_randomizer","type":"address"}],"name":"RandomizerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_FJMAddress","type":"address"},{"indexed":false,"internalType":"address","name":"_DAOAddress","type":"address"}],"name":"RoyaltiesAddressesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"SignerUpdated","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":"DAOAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FJMAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GOVERNOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_COLLECTION_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_collectionName","type":"string"},{"internalType":"uint24","name":"_numberOfParticles","type":"uint24"},{"internalType":"address payable","name":"_artistAddress","type":"address"}],"name":"addCollection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokensOwner","type":"address"},{"internalType":"uint256","name":"collectionId","type":"uint256"},{"internalType":"uint256[]","name":"tokens","type":"uint256[]"}],"name":"burn","outputs":[{"internalType":"uint256","name":"tokensBurnt","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokensOwner","type":"address"},{"internalType":"uint256","name":"collectionId","type":"uint256"},{"internalType":"uint256","name":"tokensToRedeem","type":"uint256"}],"name":"burn","outputs":[{"internalType":"uint256","name":"tokensBurnt","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"collectionCanBeSold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"collectionData","outputs":[{"internalType":"uint256","name":"nParticles","type":"uint256"},{"internalType":"uint256","name":"maxParticles","type":"uint256"},{"internalType":"bool","name":"active","type":"bool"},{"internalType":"string","name":"collectionName","type":"string"},{"internalType":"bool","name":"sold","type":"bool"},{"internalType":"uint24[]","name":"seeds","type":"uint24[]"},{"internalType":"uint256","name":"setSeedsAfterBlock","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"collectionExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"collectionIdToArtistAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"collectionId","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"expirationBlock","type":"uint256"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"delegateSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"forbidNewCollections","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getCoordinate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"getPrimaryRevenueSplits","outputs":[{"internalType":"uint256","name":"FJMRevenue_","type":"uint256"},{"internalType":"address payable","name":"FJMAddress_","type":"address"},{"internalType":"uint256","name":"DAORevenue_","type":"uint256"},{"internalType":"address payable","name":"DAOAddress_","type":"address"},{"internalType":"uint256","name":"artistRevenue_","type":"uint256"},{"internalType":"address payable","name":"artistAddress_","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRoyalties","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"getRoyaltiesForCollection","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isOperatorFilterRegistryRevoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"address","name":"_buyer","type":"address"}],"name":"markCollectionSold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint24","name":"_amount","type":"uint24"}],"name":"mint","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newCollectionsAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfCollections","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilterRegistry","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilterRegistryAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"},{"internalType":"uint256","name":"_commission","type":"uint256"},{"internalType":"uint256","name":"_tokens","type":"uint256"}],"name":"proceeds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomizerContract","outputs":[{"internalType":"contract IRandomizerV1","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"requestCollectionSeeds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeOperatorFilterRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint24[2]","name":"_seeds","type":"uint24[2]"}],"name":"setCollectionSeeds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"toggleCollectionIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenIdToCollectionId","outputs":[{"internalType":"uint256","name":"collectionId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"collectionId","type":"uint256"}],"name":"tokenTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"address payable","name":"_artistAddress","type":"address"},{"internalType":"string","name":"_collectionName","type":"string"}],"name":"updateCollectionData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint24","name":"_maxParticles","type":"uint24"}],"name":"updateCollectionMaxParticles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_artistPrimaryBPS","type":"uint256"},{"internalType":"uint256","name":"_FJMPrimaryBPS","type":"uint256"},{"internalType":"uint256","name":"_DAOPrimaryBPS","type":"uint256"}],"name":"updateCollectionPrimarySplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionId","type":"uint256"},{"internalType":"uint256","name":"_artistRoyaltyBPS","type":"uint256"},{"internalType":"uint256","name":"_FJMRoyaltyBPS","type":"uint256"},{"internalType":"uint256","name":"_DAORoyaltyBPS","type":"uint256"}],"name":"updateCollectionRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newDelegationSigner","type":"address"}],"name":"updateDelegationSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRegistry","type":"address"}],"name":"updateOperatorFilterRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAdmin","type":"address"}],"name":"updateOperatorFilterRegistryAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_randomizerAddress","type":"address"}],"name":"updateRandomizer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_FJMAddress","type":"address"},{"internalType":"address payable","name":"_DAOAddress","type":"address"}],"name":"updateRoyaltiesAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_expirationBlock","type":"uint256"},{"internalType":"address","name":"_delegate","type":"address"},{"internalType":"address","name":"_delegatee","type":"address"},{"internalType":"uint256","name":"_collectionId","type":"uint256"}],"name":"verifyDelegation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6101606040523480156200001257600080fd5b5060405162006af438038062006af4833981016040819052620000359162000888565b6040805180820182526008808252675061727469636c6560c01b602080840182905284518086018652600581526414149510d360da1b818301528551808701875293845283820192835285518087019096526001808752603160f81b92870192909252835190922060e08190527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66101008190524660a0526daaeb6d7670e522a718067333cd4e96733cc6cdda760b79bafa08df41ecfa224f810dceb69693958895889588958e95620f42409592949291907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620001788184846040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b6080523060c0526101205250600192506200019891508490508262000a09565b506002620001a7828262000a09565b50505061014052601080546001600160a01b039283166001600160a01b03199182161790915560118054928616929091168217905583903b15620002f75781156200025657604051633e9f1edf60e11b81523060048201526001600160a01b038481166024830152821690637d3e3dbe906044015b600060405180830381600087803b1580156200023757600080fd5b505af11580156200024c573d6000803e3d6000fd5b50505050620002f7565b6001600160a01b038316156200029b5760405163a0af290360e01b81523060048201526001600160a01b03848116602483015282169063a0af2903906044016200021c565b604051632210724360e11b81523060048201526001600160a01b03821690634420e48690602401600060405180830381600087803b158015620002dd57600080fd5b505af1158015620002f2573d6000803e3d6000fd5b505050505b5050506001600160a01b0384169050620003245760405163c49d17ad60e01b815260040160405180910390fd5b505060016012555083518490600003620003855760405162461bcd60e51b815260206004820152601b60248201527f4d75737420696e707574206e6f6e2d656d70747920737472696e67000000000060448201526064015b60405180910390fd5b836001600160a01b038116620003cd5760405162461bcd60e51b815260206004820152601b602482015260008051602062006ad483398151915260448201526064016200037c565b620003da60003362000413565b601980546001600160a01b031916331790556016620003fa878262000a09565b506200040784846200049c565b50505050505062000bf9565b6200041f8282620005aa565b62000498576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620004573390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620004a981620005d5565b826001600160a01b038116620004f15760405162461bcd60e51b815260206004820152601b602482015260008051602062006ad483398151915260448201526064016200037c565b826001600160a01b038116620005395760405162461bcd60e51b815260206004820152601b602482015260008051602062006ad483398151915260448201526064016200037c565b601380546001600160a01b038781166001600160a01b03199283168117909355601480549188169190921681179091556040805192835260208301919091527f64d878b2b68bdf9ccd677c8357430b6bcf61495ba360385038486ab819587004910160405180910390a15050505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff165b92915050565b620005e18133620005e4565b50565b620005f08282620005aa565b62000498576200060b816200065c60201b62002f601760201c565b6200062183602062002f726200066f821b17811c565b6040516020016200063492919062000ad5565b60408051601f198184030181529082905262461bcd60e51b82526200037c9160040162000b4e565b6060620005cf6001600160a01b03831660145b606060006200068083600262000b99565b6200068d90600262000bb3565b6001600160401b03811115620006a757620006a76200082f565b6040519080825280601f01601f191660200182016040528015620006d2576020820181803683370190505b509050600360fc1b81600081518110620006f057620006f062000bc9565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062000722576200072262000bc9565b60200101906001600160f81b031916908160001a90535060006200074884600262000b99565b6200075590600162000bb3565b90505b6001811115620007d7576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106200078d576200078d62000bc9565b1a60f81b828281518110620007a657620007a662000bc9565b60200101906001600160f81b031916908160001a90535060049490941c93620007cf8162000bdf565b905062000758565b508315620008285760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016200037c565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60005b838110156200086257818101518382015260200162000848565b50506000910152565b80516001600160a01b03811681146200088357600080fd5b919050565b600080600080608085870312156200089f57600080fd5b84516001600160401b0380821115620008b757600080fd5b818701915087601f830112620008cc57600080fd5b815181811115620008e157620008e16200082f565b604051601f8201601f19908116603f011681019083821181831017156200090c576200090c6200082f565b816040528281528a60208487010111156200092657600080fd5b6200093983602083016020880162000845565b80985050505050506200094f602086016200086b565b92506200095f604086016200086b565b91506200096f606086016200086b565b905092959194509250565b600181811c908216806200098f57607f821691505b602082108103620009b057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000a0457600081815260208120601f850160051c81016020861015620009df5750805b601f850160051c820191505b8181101562000a0057828155600101620009eb565b5050505b505050565b81516001600160401b0381111562000a255762000a256200082f565b62000a3d8162000a3684546200097a565b84620009b6565b602080601f83116001811462000a75576000841562000a5c5750858301515b600019600386901b1c1916600185901b17855562000a00565b600085815260208120601f198616915b8281101562000aa65788860151825594840194600190910190840162000a85565b508582101562000ac55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162000b0f81601785016020880162000845565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162000b4281602884016020880162000845565b01602801949350505050565b602081526000825180602084015262000b6f81604085016020870162000845565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620005cf57620005cf62000b83565b80820180821115620005cf57620005cf62000b83565b634e487b7160e01b600052603260045260246000fd5b60008162000bf15762000bf162000b83565b506000190190565b60805160a05160c05160e051610100516101205161014051615e7d62000c5760003960008181610619015281816119e8015281816122e701526134d10152600050506000505060005050600050506000505060005050615e7d6000f3fe608060405234801561001057600080fd5b506004361061043d5760003560e01c80638da5cb5b11610236578063bb3bafd61161013b578063e96d3942116100c3578063f1bebd2e11610087578063f1bebd2e14610a8c578063f5298aca14610a94578063f647bd8514610aa7578063f9296eeb14610aba578063fc72e85214610ac257600080fd5b8063e96d394214610a03578063e985e9c514610a16578063eb9019d414610a52578063eb97537114610a65578063ecba222a14610a7857600080fd5b8063d53913931161010a578063d539139314610990578063d547741f146109b7578063de390b54146109ca578063e08372fb146109dd578063e51fbfb0146109f057600080fd5b8063bb3bafd614610922578063c87b56dd14610943578063ccc5749014610956578063d392eab11461097d57600080fd5b8063a2088a17116101be578063b0ccc31e1161018d578063b0ccc31e146108c3578063b88d4fde146108d6578063b8d1e532146108e9578063ba8891e7146108fc578063bab514391461090f57600080fd5b8063a2088a1714610882578063a217fddf14610895578063a22cb4651461089d578063acb8d604146108b057600080fd5b8063931688cb11610205578063931688cb1461082e57806394aa8e961461084157806395d89b41146108545780639d16d71a1461085c578063a02af12a1461086f57600080fd5b80638da5cb5b146107c05780638ff9721f146107d157806391d14854146107e457806392ab723e1461081b57600080fd5b80633a0ec42e116103475780636ade702e116102cf5780637d91960b116102935780637d91960b1461071657806380a9d89b146107295780638178580d1461073c5780638639415b1461074f578063868a14931461079a57600080fd5b80636ade702e146106c25780636c0360eb146106d557806370a08231146106dd57806372a2ddec146106f057806375c10ffa1461070357600080fd5b80634d6fb775116103165780634d6fb7751461066157806352337242146106745780635ef9432a146106875780636352211e1461068f5780636468e317146106a257600080fd5b80633a0ec42e146106015780634035cc6c1461061457806342842e0e1461063b5780634850f2f01461064e57600080fd5b8063185153c3116103ca5780632ad612c3116103995780632ad612c3146105a25780632dd6cdc3146105b55780632f2ff15d146105c857806336568abe146105db57806336c7c12c146105ee57600080fd5b8063185153c31461052157806323b872dd14610536578063248a9ca31461054957806327dd1b001461056c57600080fd5b806306fdde031161041157806306fdde03146104a8578063081812fc146104bd578063095ea7b3146104e85780630b8d85bd146104fb5780631378d2bb1461050e57600080fd5b8062fdd58e1461044257806301ffc9a714610468578063026e402b1461048b57806303ad594c146104a0575b600080fd5b6104556104503660046152ca565b610ad5565b6040519081526020015b60405180910390f35b61047b61047636600461530c565b610b2a565b604051901515815260200161045f565b61049e6104993660046152ca565b610b35565b005b61047b610bce565b6104b0610be2565b60405161045f9190615379565b6104d06104cb36600461538c565b610c74565b6040516001600160a01b03909116815260200161045f565b61049e6104f63660046152ca565b610c9b565b61049e6105093660046153a5565b610cb4565b61045561051c3660046153c2565b610d5b565b61047b61052f36600461538c565b600c541190565b61049e61054436600461544e565b610d9d565b61045561055736600461538c565b60009081526020819052604090206001015490565b6104d061057a3660046152ca565b6000908152600d602090815260408083206001600160a01b0394851684529091529020541690565b61049e6105b036600461548f565b610dc8565b61049e6105c33660046154da565b610f28565b61049e6105d6366004615506565b6110c0565b61049e6105e9366004615506565b6110e5565b6015546104d0906001600160a01b031681565b61049e61060f3660046153a5565b611163565b6104557f000000000000000000000000000000000000000000000000000000000000000081565b61049e61064936600461544e565b6111d7565b61049e61065c3660046153a5565b6111fc565b61045561066f366004615536565b611210565b61045561068236600461538c565b611266565b61049e6114a9565b6104d061069d36600461538c565b61154e565b6104556106b036600461538c565b6000908152600a602052604090205490565b61047b6106d036600461538c565b6115b3565b6104b061178c565b6104556106eb3660046153a5565b61181a565b61049e6106fe36600461560e565b6118a0565b61045561071136600461538c565b6119e1565b61047b610724366004615667565b611a0d565b6010546104d0906001600160a01b031681565b6104d061074a36600461538c565b611ae9565b61076261075d3660046156db565b611b34565b604080519687526001600160a01b039586166020880152860193909352908316606085015260808401521660a082015260c00161045f565b6107ad6107a836600461538c565b611c55565b60405161045f97969594939291906156fd565b6019546001600160a01b03166104d0565b6013546104d0906001600160a01b031681565b61047b6107f2366004615506565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b61045561082936600461538c565b611e54565b61049e61083c36600461577f565b611e7a565b61049e61084f3660046157b4565b611f13565b6104b0612019565b61049e61086a3660046157e2565b612028565b61045561087d366004615814565b612115565b6104556108903660046156db565b6123a2565b610455600081565b61049e6108ab366004615860565b6123e3565b61049e6108be36600461538c565b6123f7565b6011546104d0906001600160a01b031681565b61049e6108e436600461588e565b6124fe565b61049e6108f73660046153a5565b61252b565b61045561090a3660046158fa565b6125d6565b61045561091d366004615536565b61279d565b61093561093036600461538c565b612843565b60405161045f92919061595c565b6104b061095136600461538c565b61289c565b6104557f7935bd0ae54bc31f548c14dba4d37c5c64b3f8ca900cb468fb8abd54d5894f5581565b6014546104d0906001600160a01b031681565b6104557f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61049e6109c5366004615506565b612902565b6019546104d0906001600160a01b031681565b61049e6109eb36600461538c565b612927565b6104556109fe3660046157e2565b6129f9565b61049e610a113660046157e2565b612a77565b61047b610a243660046157b4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b610455610a603660046152ca565b612b58565b610935610a7336600461538c565b612b93565b60115461047b90600160a01b900460ff1681565b600c54610455565b610455610aa2366004615536565b612dcb565b61049e610ab5366004615506565b612e2e565b61049e612f16565b61049e610ad03660046159e0565b612f2c565b60006001600160a01b038316610afe57604051633649397d60e21b815260040160405180910390fd5b506001600160a01b03821660009081526007602090815260408083208484529091529020545b92915050565b6000610b248261310e565b60405162461bcd60e51b815260206004820152605860248201527f505254434c436f7265455243373231566f7465733a20726567756c617220646560448201527f6c65676174696f6e2064697361626c65642e20506c656173652075736520646560648201527f6c65676174696f6e2077697468207369676e61747572652e0000000000000000608482015260a4015b60405180910390fd5b6000610bdd600b5460ff161590565b905090565b606060018054610bf190615a41565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1d90615a41565b8015610c6a5780601f10610c3f57610100808354040283529160200191610c6a565b820191906000526020600020905b815481529060010190602001808311610c4d57829003601f168201915b5050505050905090565b6000610c7f8261314e565b506000908152600560205260409020546001600160a01b031690565b81610ca5816131b2565b610caf8383613274565b505050565b6000610cbf81613384565b816001600160a01b038116610d045760405162461bcd60e51b815260206004820152601b6024820152600080516020615e288339815191526044820152606401610bc5565b601580546001600160a01b0319166001600160a01b0385169081179091556040519081527f6e62e73badc47d5a0cd306cabd5fd4caa6c4964747a6f280da30bca7f5f55d47906020015b60405180910390a1505050565b60007f7935bd0ae54bc31f548c14dba4d37c5c64b3f8ca900cb468fb8abd54d5894f55610d8781613384565b610d938686868661338e565b9695505050505050565b826001600160a01b0381163314610db757610db7336131b2565b610dc284848461344b565b50505050565b81610dd481600c541190565b610df45760405163500f73d960e01b815260048101829052602401610bc5565b6015546001600160a01b03163314610e4e5760405162461bcd60e51b815260206004820152601760248201527f4f6e6c792072616e646f6d697a6572206d6179207365740000000000000000006044820152606401610bc5565b6000838152601760205260409020600281015415610eae5760405162461bcd60e51b815260206004820152601160248201527f536565647320616c7265616479207365740000000000000000000000000000006044820152606401610bc5565b610ebe60028083019085906151f8565b507fd5c9979d88f76677835fc3be4fc78545dfd5f7103adf04f7ab6893f419d0a75c84610eee6020860186615a8b565b610efe6040870160208801615a8b565b6040805193845262ffffff928316602085015291169082015260600160405180910390a150505050565b81610f3481600c541190565b610f545760405163500f73d960e01b815260048101829052602401610bc5565b6000610f5f81613384565b610f6d8362ffffff166134c2565b610fc55760405162461bcd60e51b8152602060048201526024808201527f6d61785061727469636c65732068617320746f206265203e203020616e64203c6044820152633d20314d60e01b6064820152608401610bc5565b60008481526017602052604090205462ffffff16156110565760405162461bcd60e51b815260206004820152604160248201527f6d61785061727469636c65732063616e206f6e6c79206265207570646174656460448201527f206966206e6f207061727469636c65732068617665206265656e206d696e74656064820152601960fa1b608482015260a401610bc5565b600084815260176020908152604091829020805465ffffff0000001916630100000062ffffff881690810291909117909155915191825285917fefc2d6220ea1e8114a7515784bc3f07354b2b3704dfc38dc51fd00d5a1acb113910160405180910390a250505050565b6000828152602081905260409020600101546110db81613384565b610caf83836134f5565b6001600160a01b03811633146111555760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610bc5565b61115f8282613593565b5050565b600061116e81613384565b816001600160a01b0381166111b35760405162461bcd60e51b815260206004820152601b6024820152600080516020615e288339815191526044820152606401610bc5565b5050601980546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b03811633146111f1576111f1336131b2565b610dc2848484613612565b600061120781613384565b61115f8261362d565b60004383106112325760405163281f6f0d60e01b815260040160405180910390fd5b6000828152600e602090815260408083206001600160a01b0388168452909152902061125e90846136bf565b949350505050565b60008060176000611276856119e1565b81526020808201929092526040908101600020815160e081018352815462ffffff808216835263010000008204169482019490945260ff600160301b85048116151593820193909352600160381b909304909116151560608301526001810180546080840191906112e690615a41565b80601f016020809104026020016040519081016040528092919081815260200182805461131290615a41565b801561135f5780601f106113345761010080835404028352916020019161135f565b820191906000526020600020905b81548152906001019060200180831161134257829003601f168201915b50505050508152602001600282018054806020026020016040519081016040528092919081815260200182805480156113e157602002820191906000526020600020906000905b82829054906101000a900462ffffff1662ffffff16815260200190600301906020826002010492830192600103820291508084116113a65790505b5050505050815260200160038201548152505090508060a00151516000036114285761140c836119e1565b604051635eca74c360e11b8152600401610bc591815260200190565b60008160a0015160008151811061144157611441615a75565b602002602001015162ffffff16905060008260a0015160018151811061146957611469615a75565b6020908102919091018101519084015162ffffff918216925016808261149563ffffffff861689615abc565b61149f9190615ad3565b610d939190615afc565b6019546001600160a01b031633146114d457604051635fc483c560e01b815260040160405180910390fd5b601154600160a01b900460ff16156114ff57604051631551a48f60e11b815260040160405180910390fd5b6011805474ffffffffffffffffffffffffffffffffffffffffff1916600160a01b1790556040517f51e2d870cc2e10853e38dc06fcdae46ad3c3f588f326608803dac6204541ad1690600090a1565b6000818152600360205260408120546001600160a01b031680610b245760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610bc5565b6000816115c181600c541190565b6115e15760405163500f73d960e01b815260048101829052602401610bc5565b6000838152601760209081526040808320815160e081018352815462ffffff808216835263010000008204169482019490945260ff600160301b85048116151593820193909352600160381b9093049091161515606083015260018101805460808401919061164f90615a41565b80601f016020809104026020016040519081016040528092919081815260200182805461167b90615a41565b80156116c85780601f1061169d576101008083540402835291602001916116c8565b820191906000526020600020905b8154815290600101906020018083116116ab57829003601f168201915b505050505081526020016002820180548060200260200160405190810160405280929190818152602001828054801561174a57602002820191906000526020600020906000905b82829054906101000a900462ffffff1662ffffff168152602001906003019060208260020104928301926001038202915080841161170f5790505b50505050508152602001600382015481525050905080606001511580156117825750806020015162ffffff16816000015162ffffff16145b9250505b50919050565b6016805461179990615a41565b80601f01602080910402602001604051908101604052809291908181526020018280546117c590615a41565b80156118125780601f106117e757610100808354040283529160200191611812565b820191906000526020600020905b8154815290600101906020018083116117f557829003601f168201915b505050505081565b60006001600160a01b0382166118845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610bc5565b506001600160a01b031660009081526004602052604090205490565b826118ac81600c541190565b6118cc5760405163500f73d960e01b815260048101829052602401610bc5565b60006118d781613384565b836001600160a01b03811661191c5760405162461bcd60e51b815260206004820152601b6024820152600080516020615e288339815191526044820152606401610bc5565b83805160000361196e5760405162461bcd60e51b815260206004820152601b60248201527f4d75737420696e707574206e6f6e2d656d70747920737472696e6700000000006044820152606401610bc5565b60008781526017602052604090206001016119898682615b5e565b5060008781526018602052604080822080546001600160a01b0319166001600160a01b038a161790555188917f2bcb029dd0f41b1e405e6a89616877e7291895e7686c45d4bb55d5c9467bca6b91a250505050505050565b6000610b247f000000000000000000000000000000000000000000000000000000000000000083615c1e565b6040516bffffffffffffffffffffffff19606085811b8216602084015284901b166034820152604881018290526068810185905260009081906088016040516020818303038152906040528051906020012090508543108015611ade5750611acc87611ac6836040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b906137db565b6010546001600160a01b039081169116145b979650505050505050565b600081611af781600c541190565b611b175760405163500f73d960e01b815260048101829052602401610bc5565b50506000908152601860205260409020546001600160a01b031690565b60008060008060008087611b4981600c541190565b611b695760405163500f73d960e01b815260048101829052602401610bc5565b600089815260186020908152604091829020825160e08101845281546001600160a01b031681526001820154928101929092526002810154928201929092526003820154606082015260048201546080820152600582015460a0820181905260069092015460c08201529061271090611be2908b615abc565b611bec9190615c1e565b975061271081608001518a611c019190615abc565b611c0b9190615c1e565b93506127108160c001518a611c209190615abc565b611c2a9190615c1e565b6013549151601454999c6001600160a01b039384169c50919a50919098169793965094509192505050565b6000806000606060006060600087611c6e81600c541190565b611c8e5760405163500f73d960e01b815260048101829052602401610bc5565b6000898152601760209081526040808320815160e081018352815462ffffff808216835263010000008204169482019490945260ff600160301b85048116151593820193909352600160381b90930490911615156060830152600181018054608084019190611cfc90615a41565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2890615a41565b8015611d755780601f10611d4a57610100808354040283529160200191611d75565b820191906000526020600020905b815481529060010190602001808311611d5857829003601f168201915b5050505050815260200160028201805480602002602001604051908101604052809291908181526020018280548015611df757602002820191906000526020600020906000905b82829054906101000a900462ffffff1662ffffff1681526020019060030190602082600201049283019260010382029150808411611dbc5790505b505050505081526020016003820154815250509050806000015162ffffff169850806020015162ffffff1697508060400151965080608001519550806060015194508060a0015193508060c0015192505050919395979092949650565b6000818152600f60205260408120611e6b906137f7565b6001600160e01b031692915050565b6000611e8581613384565b818051600003611ed75760405162461bcd60e51b815260206004820152601b60248201527f4d75737420696e707574206e6f6e2d656d70747920737472696e6700000000006044820152606401610bc5565b6016611ee38482615b5e565b507f6741b2fc379fad678116fe3d4d4b9a1a184ab53ba36b86ad0fa66340b1ab41ad83604051610d4e9190615379565b6000611f1e81613384565b826001600160a01b038116611f635760405162461bcd60e51b815260206004820152601b6024820152600080516020615e288339815191526044820152606401610bc5565b826001600160a01b038116611fa85760405162461bcd60e51b815260206004820152601b6024820152600080516020615e288339815191526044820152606401610bc5565b601380546001600160a01b038781166001600160a01b03199283168117909355601480549188169190921681179091556040805192835260208301919091527f64d878b2b68bdf9ccd677c8357430b6bcf61495ba360385038486ab819587004910160405180910390a15050505050565b606060028054610bf190615a41565b8361203481600c541190565b6120545760405163500f73d960e01b815260048101829052602401610bc5565b600061205f81613384565b6127108361206d8688615ad3565b6120779190615ad3565b146120c45760405162461bcd60e51b815260206004820152601560248201527f5072696d6172792073706c697420213d203130302500000000000000000000006044820152606401610bc5565b60008681526018602052604080822060048101889055600581018790556006018590555187917f98e5eecea8c1ac0d6a3c03c8ea20a88b6645f70bc6d45d59a2d752c9ded023b491a2505050505050565b60008261212381600c541190565b6121435760405163500f73d960e01b815260048101829052602401610bc5565b61214b613831565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff161580156121b957503360009081527f0781d7cac9c378efa22a7481e4d4d29704a680ddf504b3bc50b517700ee11e6c602052604090205460ff16155b156121d757604051631eb49d6d60e11b815260040160405180910390fd5b8262ffffff166000036122045760405163383ecc7560e21b815262ffffff84166004820152602401610bc5565b60008481526017602052604081208054909162ffffff808316926301000000900416906122318784615c32565b90508162ffffff168162ffffff1611156122655760405163383ecc7560e21b815262ffffff88166004820152602401610bc5565b8354600160301b900460ff161580156122ad57503360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16155b156122ce57604051630e7309a160e31b815260048101899052602401610bc5565b835462ffffff191662ffffff82811691821786558481167f00000000000000000000000000000000000000000000000000000000000000008b020191908416900361235e5761231f43610100615ad3565b6003860155845466ff0000000000001916855560405189907fce5e4e5a1bcb4f2c53442ea53357a531cbdb9dfeb50f4cf80b6608f8b95db1c690600090a25b60005b8862ffffff16811015612389576123818b61237c8385615ad3565b61388a565b600101612361565b5095505050505061239a6001601255565b509392505050565b60004383106123c45760405163281f6f0d60e01b815260040160405180910390fd5b6000828152600f602052604090206123dc90846136bf565b9392505050565b816123ed816131b2565b610caf83836138a4565b8061240381600c541190565b6124235760405163500f73d960e01b815260048101829052602401610bc5565b600061242e81613384565b600083815260176020526040902060030154801580159061244e57508043115b61249a5760405162461bcd60e51b815260206004820152601660248201527f546f6f206561726c7920746f20736574207365656473000000000000000000006044820152606401610bc5565b6015546040516360f6c63f60e11b8152600481018690526001600160a01b039091169063c1ed8c7e90602401600060405180830381600087803b1580156124e057600080fd5b505af11580156124f4573d6000803e3d6000fd5b5050505050505050565b836001600160a01b038116331461251857612518336131b2565b612524858585856138af565b5050505050565b6019546001600160a01b0316331461255657604051635fc483c560e01b815260040160405180910390fd5b601154600160a01b900460ff161561258157604051631551a48f60e11b815260040160405180910390fd5b601180546001600160a01b0319166001600160a01b0383169081179091556040519081527f9f513fe86dc42fdbac355fa4d9b1d5be7b5e6cd2df67e30db8003766568de476906020015b60405180910390a150565b6000806125e281613384565b826001600160a01b0381166126275760405162461bcd60e51b815260206004820152601b6024820152600080516020615e288339815191526044820152606401610bc5565b8580516000036126795760405162461bcd60e51b815260206004820152601b60248201527f4d75737420696e707574206e6f6e2d656d70747920737472696e6700000000006044820152606401610bc5565b60006126898762ffffff16613927565b90507cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8111156126f85760405162461bcd60e51b815260206004820152601860248201527f436f6c6c656374696f6e206964203e20323332206269747300000000000000006044820152606401610bc5565b600081815260186020908152604080832080546001600160a01b0319166001600160a01b038b161781556101f460018083019190915560fa60028301819055600383015560048201859055612710600583015560069091018490556017909252909120016127668982615b5e565b506000818152601760205260409020805462ffffff891663010000000265ffffff0000001990911617905593505050509392505050565b60006127a98483610ad5565b83106128105760405162461bcd60e51b815260206004820152603060248201527f4552433732314d756c7469436f6c6c656374696f6e3a206f776e657220696e6460448201526f6578206f7574206f6620626f756e647360801b6064820152608401610bc5565b506001600160a01b0392909216600090815260086020908152604080832094835293815283822092825291909152205490565b606080612867836000908152600360205260409020546001600160a01b0316151590565b6128875760405163ed15e6cf60e01b815260048101849052602401610bc5565b612893610a73846119e1565b91509150915091565b60606128a78261314e565b60006128b1613a40565b905060008151116128d157604051806020016040528060008152506123dc565b806128db84613a4f565b6040516020016128ec929190615c55565b6040516020818303038152906040529392505050565b60008281526020819052604090206001015461291d81613384565b610caf8383613593565b600061293281613384565b8161293e81600c541190565b61295e5760405163500f73d960e01b815260048101829052602401610bc5565b6000838152601760205260409020805460ff600160301b808304821615810266ff000000000000199093169290921792839055910416156129c95760405183907f22585281de0514bb24dd2493815bbecb10e5ea5106b205f100f60e4413c3d99d90600090a2505050565b60405183907fe23909040bce59cacbb68bb30167fc314ae2f73037a25b7cdb4fa210e601c26190600090a2505050565b600084612a0781600c541190565b612a275760405163500f73d960e01b815260048101829052602401610bc5565b6000868152601760205260409020546301000000900462ffffff16836064612a4f8789615abc565b612a599190615c1e565b612a639088615c84565b612a6d9190615abc565b610d939190615c1e565b83612a8381600c541190565b612aa35760405163500f73d960e01b815260048101829052602401610bc5565b6000612aae81613384565b61271083612abc8688615ad3565b612ac69190615ad3565b1115612b075760405162461bcd60e51b815260206004820152601060248201526f526f79616c74696573203e203130302560801b6044820152606401610bc5565b60008681526018602052604080822060018101889055600281018790556003018590555187917fb978f9f2416f2faabd6fcccddbb4512f611decc36b6d3b48a158f6c419bc9d6e91a2505050505050565b6000818152600e602090815260408083206001600160a01b03861684529091528120612b83906137f7565b6001600160e01b03169392505050565b60608082612ba281600c541190565b612bc25760405163500f73d960e01b815260048101829052602401610bc5565b6040805160038082526080820190925290602082016060803683375050604080516003808252608082019092529295509050602082016060803683375050506000858152601860209081526040808320815160e08101835281546001600160a01b031681526001820154938101849052600282015492810183905260038201546060820181905260048301546080830152600583015460a083015260069092015460c082015294965091928315612ccd578460000151888281518110612c8a57612c8a615a75565b6001600160a01b0390921660209283029190910190910152838782612cae81615c97565b935081518110612cc057612cc0615a75565b6020026020010181815250505b8215612d395760145488516001600160a01b0390911690899083908110612cf657612cf6615a75565b6001600160a01b0390921660209283029190910190910152828782612d1a81615c97565b935081518110612d2c57612d2c615a75565b6020026020010181815250505b8115612da55760135488516001600160a01b0390911690899083908110612d6257612d62615a75565b6001600160a01b0390921660209283029190910190910152818782612d8681615c97565b935081518110612d9857612d98615a75565b6020026020010181815250505b8060031115612dc05780600303808951038952808851038852505b505050505050915091565b60007f7935bd0ae54bc31f548c14dba4d37c5c64b3f8ca900cb468fb8abd54d5894f55612df781613384565b83612e0381600c541190565b612e235760405163500f73d960e01b815260048101829052602401610bc5565b610d93868686613ae2565b7f7935bd0ae54bc31f548c14dba4d37c5c64b3f8ca900cb468fb8abd54d5894f55612e5881613384565b82612e6481600c541190565b612e845760405163500f73d960e01b815260048101829052602401610bc5565b60008481526017602052604090208054600160381b900460ff1615612ebc57604051631b42fb7f60e31b815260040160405180910390fd5b805467ff000000000000001916600160381b1781556040516001600160a01b038516815285907f456a5e5d54a56beacad5651c110043648a245fdf1cb3a74fcfbe3fed592ec9779060200160405180910390a25050505050565b6000612f2181613384565b612f29613bb9565b50565b612f398282338787611a0d565b612f5657604051638baa579f60e01b815260040160405180910390fd5b610dc28484613c44565b6060610b246001600160a01b03831660145b60606000612f81836002615abc565b612f8c906002615ad3565b67ffffffffffffffff811115612fa457612fa461556b565b6040519080825280601f01601f191660200182016040528015612fce576020820181803683370190505b509050600360fc1b81600081518110612fe957612fe9615a75565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061301857613018615a75565b60200101906001600160f81b031916908160001a905350600061303c846002615abc565b613047906001615ad3565b90505b60018111156130bf576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061307b5761307b615a75565b1a60f81b82828151811061309157613091615a75565b60200101906001600160f81b031916908160001a90535060049490941c936130b881615cb0565b905061304a565b5083156123dc5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bc5565b60006001600160e01b031982166380ac58cd60e01b148061313f57506001600160e01b03198216635b5e139f60e01b145b80610b245750610b2482613ccc565b6000818152600360205260409020546001600160a01b0316612f295760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610bc5565b6011546001600160a01b031680158015906131d757506000816001600160a01b03163b115b1561115f57604051633185c44d60e21b81523060048201526001600160a01b03838116602483015282169063c617113490604401602060405180830381865afa158015613228573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061324c9190615cc7565b61115f57604051633b79c77360e21b81526001600160a01b0383166004820152602401610bc5565b600061327f8261154e565b9050806001600160a01b0316836001600160a01b0316036132ec5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bc5565b336001600160a01b038216148061330857506133088133610a24565b61337a5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610bc5565b610caf8383613d01565b612f298133613d6f565b600081815b818110156134415760008585838181106133af576133af615a75565b905060200201359050876001600160a01b03166133cb8261154e565b6001600160a01b031614613404576040516302139f1360e61b81526001600160a01b038916600482015260248101829052604401610bc5565b8661340e826119e1565b1461342f5760405163500f73d960e01b815260048101889052602401610bc5565b61343881613de2565b50600101613393565b5095945050505050565b6134553382613e8f565b6134b75760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610bc5565b610caf838383613f0d565b60008082118015610b245750507f0000000000000000000000000000000000000000000000000000000000000000101590565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1661115f576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561354f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff161561115f576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b610caf838383604051806020016040528060008152506124fe565b6001600160a01b0381166136715760405162461bcd60e51b815260206004820152601b6024820152600080516020615e288339815191526044820152606401610bc5565b601080546001600160a01b0319166001600160a01b0383169081179091556040519081527f5553331329228fbd4123164423717a4a7539f6dfa1c3279a923b98fd681a6c73906020016125cb565b60004382106137105760405162461bcd60e51b815260206004820181905260248201527f436865636b706f696e74733a20626c6f636b206e6f7420796574206d696e65646044820152606401610bc5565b600061371b83614102565b845490915060008160058111156137795760006137378461416b565b6137419085615c84565b60008981526020902090915081015463ffffffff908116908616101561376957809150613777565b613774816001615ad3565b92505b505b600061378788868585614253565b905080156137c3576137ac8861379e600184615c84565b600091825260209091200190565b5464010000000090046001600160e01b03166137c6565b60005b6001600160e01b031698975050505050505050565b60008060006137ea85856142a9565b9150915061239a816142ee565b80546000908015613828576138118361379e600184615c84565b5464010000000090046001600160e01b03166123dc565b60009392505050565b6002601254036138835760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bc5565b6002601255565b61115f828260405180602001604052806000815250614438565b61115f33838361446b565b6138b93383613e8f565b61391b5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610bc5565b610dc284848484614539565b600b5460009060ff161561397d5760405162461bcd60e51b815260206004820152601960248201527f4e657720636f6c6c656374696f6e7320666f7262696464656e000000000000006044820152606401610bc5565b613986826134c2565b6139f85760405162461bcd60e51b815260206004820152603960248201527f4e756d626572206f66207061727469636c6573206d757374206265203e20302060448201527f2626203c3d204d41585f434f4c4c454354494f4e5f53495a45000000000000006064820152608401610bc5565b600c80549081906000613a0a83615c97565b909155505060405181907f7f51fefb7dc58758a80c274fa8aac5a9ae05c5e7774fd84ddd339f5625f3b27f90600090a292915050565b606060168054610bf190615a41565b60606000613a5c8361456c565b600101905060008167ffffffffffffffff811115613a7c57613a7c61556b565b6040519080825280601f01601f191660200182016040528015613aa6576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084613ab057509392505050565b6001600160a01b038316600090815260076020908152604080832085845290915281205482811015613b475760405163eab5580560e01b81526001600160a01b0386166004820152602481018590526044810184905260648101829052608401610bc5565b60005b83811015613baf576001600160a01b038616600090815260086020908152604080832088845290915281208183613b82600187615c84565b613b8c9190615c84565b8152602001908152602001600020549050613ba681613de2565b50600101613b4a565b5091949350505050565b600b5460ff1615613c0c5760405162461bcd60e51b815260206004820152601160248201527f416c726561647920666f7262696464656e0000000000000000000000000000006044820152606401610bc5565b600b805460ff191660011790556040517fe5bd5030d170c70c3a48d78fd10e7909b9f1b202dd6fabdf4a111c0f6ab4d10190600090a1565b6000818152600d60209081526040808320338085529083529281902080546001600160a01b038781166001600160a01b031983168117909355835187815293519116939192849286927f287e04de574701d97a55bd9ea85b32defecf76a607b8007ee9ae8c126bf7a7469281900390910190a4610dc28185613cc6858761464e565b8661465a565b60006001600160e01b03198216637965db0b60e01b1480610b2457506301ffc9a760e01b6001600160e01b0319831614610b24565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613d368261154e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1661115f57613da081612f60565b613dab836020612f72565b604051602001613dbc929190615ce4565b60408051601f198184030181529082905262461bcd60e51b8252610bc591600401615379565b6000613ded8261154e565b9050613dfd8160008460016147ae565b613e068261154e565b600083815260056020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526004845282852080546000190190558785526003909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a461115f8160008460016147ba565b600080613e9b8361154e565b9050806001600160a01b0316846001600160a01b03161480613ee257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b8061125e5750836001600160a01b0316613efb84610c74565b6001600160a01b031614949350505050565b826001600160a01b0316613f208261154e565b6001600160a01b031614613f845760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610bc5565b6001600160a01b038216613fe65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc5565b613ff383838360016147ae565b826001600160a01b03166140068261154e565b6001600160a01b03161461406a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610bc5565b600081815260056020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260048552838620805460001901905590871680865283862080546001019055868652600390945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4610caf83838360016147ba565b600063ffffffff8211156141675760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b6064820152608401610bc5565b5090565b60008160000361417d57506000919050565b6000600161418a846147c6565b901c6001901b905060018184816141a3576141a3615ae6565b048201901c905060018184816141bb576141bb615ae6565b048201901c905060018184816141d3576141d3615ae6565b048201901c905060018184816141eb576141eb615ae6565b048201901c9050600181848161420357614203615ae6565b048201901c9050600181848161421b5761421b615ae6565b048201901c9050600181848161423357614233615ae6565b048201901c90506123dc8182858161424d5761424d615ae6565b0461485a565b60005b8183101561239a57600061426a8484614870565b60008781526020902090915063ffffffff86169082015463ffffffff161115614295578092506142a3565b6142a0816001615ad3565b93505b50614256565b60008082516041036142df5760208301516040840151606085015160001a6142d38782858561488b565b945094505050506142e7565b506000905060025b9250929050565b600081600481111561430257614302615d65565b0361430a5750565b600181600481111561431e5761431e615d65565b0361436b5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610bc5565b600281600481111561437f5761437f615d65565b036143cc5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610bc5565b60038160048111156143e0576143e0615d65565b03612f295760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610bc5565b614442838361494f565b61444f6000848484614af2565b610caf5760405162461bcd60e51b8152600401610bc590615d7b565b816001600160a01b0316836001600160a01b0316036144cc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bc5565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b614544848484613f0d565b61455084848484614af2565b610dc25760405162461bcd60e51b8152600401610bc590615d7b565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106145b5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106145e1576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106145ff57662386f26fc10000830492506010015b6305f5e1008310614617576305f5e100830492506008015b612710831061462b57612710830492506004015b6064831061463d576064830492506002015b600a8310610b245760010192915050565b60006123dc8383610ad5565b826001600160a01b0316846001600160a01b03161415801561467c5750600082115b15610dc2576001600160a01b03841615614715576000818152600e602090815260408083206001600160a01b0388168452909152812081906146c190614bf086614bfc565b604080518381526020810183905290810186905291935091506001600160a01b038716907f21a99d51b8a0a2e2ead709843a1ecfaab977908135cf1c085c0a6246eea6e0f09060600160405180910390a250505b6001600160a01b03831615610dc2576000818152600e602090815260408083206001600160a01b03871684529091528120819061475590614c3486614bfc565b604080518381526020810183905290810186905291935091506001600160a01b038616907f21a99d51b8a0a2e2ead709843a1ecfaab977908135cf1c085c0a6246eea6e0f09060600160405180910390a2505050505050565b610dc284848484614c40565b610dc284848484614ce7565b600080608083901c156147db57608092831c92015b604083901c156147ed57604092831c92015b602083901c156147ff57602092831c92015b601083901c1561481157601092831c92015b600883901c1561482357600892831c92015b600483901c1561483557600492831c92015b600283901c1561484757600292831c92015b600183901c15610b245760010192915050565b600081831061486957816123dc565b5090919050565b600061487f6002848418615c1e565b6123dc90848416615ad3565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156148c25750600090506003614946565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015614916573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661493f57600060019250925050614946565b9150600090505b94509492505050565b6001600160a01b0382166149a55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bc5565b6000818152600360205260409020546001600160a01b031615614a0a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bc5565b614a186000838360016147ae565b6000818152600360205260409020546001600160a01b031615614a7d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bc5565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461115f6000838360016147ba565b60006001600160a01b0384163b15614be857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614b36903390899088908890600401615dd8565b6020604051808303816000875af1925050508015614b71575060408051601f3d908101601f19168201909252614b6e91810190615e0a565b60015b614bce573d808015614b9f576040519150601f19603f3d011682016040523d82523d6000602084013e614ba4565b606091505b508051600003614bc65760405162461bcd60e51b8152600401610bc590615d7b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061125e565b50600161125e565b60006123dc8284615c84565b600080614c2785614c22614c0f886137f7565b6001600160e01b0316868863ffffffff16565b614d00565b915091505b935093915050565b60006123dc8284615ad3565b614c4c84848484614d34565b6000614c57836119e1565b90506001600160a01b03851615614c7857614c73858483614dbc565b614c9d565b6000818152600a60205260408120805460019290614c97908490615ad3565b90915550505b6001600160a01b03841615614cbc57614cb7848483614ee2565b612524565b6000818152600a60205260408120805460019290614cdb908490615c84565b90915550505050505050565b614cfb848483614cf6866119e1565b614f59565b610dc2565b600080614d1e84614d1043614102565b614d1986614fec565b615055565b6001600160e01b03918216969116945092505050565b6001811115610dc2576001600160a01b03841615614d7a576001600160a01b03841660009081526004602052604081208054839290614d74908490615c84565b90915550505b6001600160a01b03831615610dc2576001600160a01b03831660009081526004602052604081208054839290614db1908490615ad3565b909155505050505050565b6001600160a01b0383166000908152600760209081526040808320848452909152812054614dec90600190615c84565b6001600160a01b03851660009081526009602090815260408083208684528252808320878452909152902054909150808214614e74576001600160a01b03851660008181526008602090815260408083208784528252808320868452825280832054858452818420819055938352600982528083208784528252808320938352929052208190555b6001600160a01b0385166000818152600960209081526040808320878452825280832088845282528083208390558383526008825280832087845282528083208684528252808320839055928252600781528282208683529052908120805460019290614cdb908490615c84565b6001600160a01b0383166000818152600760209081526040808320858452808352818420805486865260088552838620888752855283862081875285528386208990559585526009845282852087865284528285208886528452918420859055858452909152805460019290614db1908490615ad3565b6001600160a01b038416614f85576000818152600f60205260409020614f8290614c3484614bfc565b50505b6001600160a01b038316614fb1576000818152600f60205260409020614fae90614bf084614bfc565b50505b6000818152600d602090815260408083206001600160a01b0388811685529252808320548683168452922054610dc29282169116848461465a565b60006001600160e01b038211156141675760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401610bc5565b82546000908190801561519e5760006150738761379e600185615c84565b60408051808201909152905463ffffffff8082168084526401000000009092046001600160e01b0316602084015291925090871610156150f55760405162461bcd60e51b815260206004820152601760248201527f436865636b706f696e743a20696e76616c6964206b65790000000000000000006044820152606401610bc5565b805163ffffffff80881691160361513e57846151168861379e600186615c84565b80546001600160e01b03929092166401000000000263ffffffff90921691909117905561518e565b6040805180820190915263ffffffff80881682526001600160e01b0380881660208085019182528b54600181018d5560008d81529190912094519151909216640100000000029216919091179101555b602001519250839150614c2c9050565b50506040805180820190915263ffffffff80851682526001600160e01b0380851660208085019182528854600181018a5560008a815291822095519251909316640100000000029190931617920191909155905081614c2c565b82805482825590600052602060002090600901600a900481019282156152995791602002820160005b8382111561526857833562ffffff1683826101000a81548162ffffff021916908362ffffff1602179055509260200192600301602081600201049283019260010302615221565b80156152975782816101000a81549062ffffff0219169055600301602081600201049283019260010302615268565b505b506141679291505b8082111561416757600081556001016152a1565b6001600160a01b0381168114612f2957600080fd5b600080604083850312156152dd57600080fd5b82356152e8816152b5565b946020939093013593505050565b6001600160e01b031981168114612f2957600080fd5b60006020828403121561531e57600080fd5b81356123dc816152f6565b60005b8381101561534457818101518382015260200161532c565b50506000910152565b60008151808452615365816020860160208601615329565b601f01601f19169290920160200192915050565b6020815260006123dc602083018461534d565b60006020828403121561539e57600080fd5b5035919050565b6000602082840312156153b757600080fd5b81356123dc816152b5565b600080600080606085870312156153d857600080fd5b84356153e3816152b5565b935060208501359250604085013567ffffffffffffffff8082111561540757600080fd5b818701915087601f83011261541b57600080fd5b81358181111561542a57600080fd5b8860208260051b850101111561543f57600080fd5b95989497505060200194505050565b60008060006060848603121561546357600080fd5b833561546e816152b5565b9250602084013561547e816152b5565b929592945050506040919091013590565b600080606083850312156154a257600080fd5b82359150836060840111156154b657600080fd5b50926020919091019150565b803562ffffff811681146154d557600080fd5b919050565b600080604083850312156154ed57600080fd5b823591506154fd602084016154c2565b90509250929050565b6000806040838503121561551957600080fd5b82359150602083013561552b816152b5565b809150509250929050565b60008060006060848603121561554b57600080fd5b8335615556816152b5565b95602085013595506040909401359392505050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261559257600080fd5b813567ffffffffffffffff808211156155ad576155ad61556b565b604051601f8301601f19908116603f011681019082821181831017156155d5576155d561556b565b816040528381528660208588010111156155ee57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060006060848603121561562357600080fd5b833592506020840135615635816152b5565b9150604084013567ffffffffffffffff81111561565157600080fd5b61565d86828701615581565b9150509250925092565b600080600080600060a0868803121561567f57600080fd5b853567ffffffffffffffff81111561569657600080fd5b6156a288828901615581565b9550506020860135935060408601356156ba816152b5565b925060608601356156ca816152b5565b949793965091946080013592915050565b600080604083850312156156ee57600080fd5b50508035926020909101359150565b878152600060208881840152871515604084015260e0606084015261572560e084018861534d565b861515608085015283810360a085015285518082528287019183019060005b8181101561576557835162ffffff1683529284019291840191600101615744565b50508093505050508260c083015298975050505050505050565b60006020828403121561579157600080fd5b813567ffffffffffffffff8111156157a857600080fd5b61125e84828501615581565b600080604083850312156157c757600080fd5b82356157d2816152b5565b9150602083013561552b816152b5565b600080600080608085870312156157f857600080fd5b5050823594602084013594506040840135936060013592509050565b60008060006060848603121561582957600080fd5b8335615834816152b5565b925060208401359150615849604085016154c2565b90509250925092565b8015158114612f2957600080fd5b6000806040838503121561587357600080fd5b823561587e816152b5565b9150602083013561552b81615852565b600080600080608085870312156158a457600080fd5b84356158af816152b5565b935060208501356158bf816152b5565b925060408501359150606085013567ffffffffffffffff8111156158e257600080fd5b6158ee87828801615581565b91505092959194509250565b60008060006060848603121561590f57600080fd5b833567ffffffffffffffff81111561592657600080fd5b61593286828701615581565b935050615941602085016154c2565b91506040840135615951816152b5565b809150509250925092565b604080825283519082018190526000906020906060840190828701845b8281101561599e5781516001600160a01b031684529284019290840190600101615979565b5050508381038285015284518082528583019183019060005b818110156159d3578351835292840192918401916001016159b7565b5090979650505050505050565b600080600080608085870312156159f657600080fd5b8435615a01816152b5565b935060208501359250604085013567ffffffffffffffff811115615a2457600080fd5b615a3087828801615581565b949793965093946060013593505050565b600181811c90821680615a5557607f821691505b60208210810361178657634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060208284031215615a9d57600080fd5b6123dc826154c2565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610b2457610b24615aa6565b80820180821115610b2457610b24615aa6565b634e487b7160e01b600052601260045260246000fd5b600082615b0b57615b0b615ae6565b500690565b601f821115610caf57600081815260208120601f850160051c81016020861015615b375750805b601f850160051c820191505b81811015615b5657828155600101615b43565b505050505050565b815167ffffffffffffffff811115615b7857615b7861556b565b615b8c81615b868454615a41565b84615b10565b602080601f831160018114615bc15760008415615ba95750858301515b600019600386901b1c1916600185901b178555615b56565b600085815260208120601f198616915b82811015615bf057888601518255948401946001909101908401615bd1565b5085821015615c0e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082615c2d57615c2d615ae6565b500490565b62ffffff818116838216019080821115615c4e57615c4e615aa6565b5092915050565b60008351615c67818460208801615329565b835190830190615c7b818360208801615329565b01949350505050565b81810381811115610b2457610b24615aa6565b600060018201615ca957615ca9615aa6565b5060010190565b600081615cbf57615cbf615aa6565b506000190190565b600060208284031215615cd957600080fd5b81516123dc81615852565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351615d1c816017850160208801615329565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351615d59816028840160208801615329565b01602801949350505050565b634e487b7160e01b600052602160045260246000fd5b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152610d93608083018461534d565b600060208284031215615e1c57600080fd5b81516123dc816152f656fe4d75737420696e707574206e6f6e2d7a65726f20616464726573730000000000a264697066735822122024e8bb7c2aba768fce6d4ee6589a40d55ee11074a1941ce12f77f9b8d8d654f664736f6c634300081100334d75737420696e707574206e6f6e2d7a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000004cb2cb5555fe651586d7765bed5d6ba7debc4e81000000000000000000000000fcec40aa7d9ef4438510366e53b98690878862e50000000000000000000000003456b98963eadcaed6534a2bff6d3d56c7ba8038000000000000000000000000000000000000000000000000000000000000004168747470733a2f2f6170692d70726f642e7061727469636c65636f6c6c656374696f6e2e636f6d2f6170692f76312f7061727469636c652d6d657461646174612f00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061043d5760003560e01c80638da5cb5b11610236578063bb3bafd61161013b578063e96d3942116100c3578063f1bebd2e11610087578063f1bebd2e14610a8c578063f5298aca14610a94578063f647bd8514610aa7578063f9296eeb14610aba578063fc72e85214610ac257600080fd5b8063e96d394214610a03578063e985e9c514610a16578063eb9019d414610a52578063eb97537114610a65578063ecba222a14610a7857600080fd5b8063d53913931161010a578063d539139314610990578063d547741f146109b7578063de390b54146109ca578063e08372fb146109dd578063e51fbfb0146109f057600080fd5b8063bb3bafd614610922578063c87b56dd14610943578063ccc5749014610956578063d392eab11461097d57600080fd5b8063a2088a17116101be578063b0ccc31e1161018d578063b0ccc31e146108c3578063b88d4fde146108d6578063b8d1e532146108e9578063ba8891e7146108fc578063bab514391461090f57600080fd5b8063a2088a1714610882578063a217fddf14610895578063a22cb4651461089d578063acb8d604146108b057600080fd5b8063931688cb11610205578063931688cb1461082e57806394aa8e961461084157806395d89b41146108545780639d16d71a1461085c578063a02af12a1461086f57600080fd5b80638da5cb5b146107c05780638ff9721f146107d157806391d14854146107e457806392ab723e1461081b57600080fd5b80633a0ec42e116103475780636ade702e116102cf5780637d91960b116102935780637d91960b1461071657806380a9d89b146107295780638178580d1461073c5780638639415b1461074f578063868a14931461079a57600080fd5b80636ade702e146106c25780636c0360eb146106d557806370a08231146106dd57806372a2ddec146106f057806375c10ffa1461070357600080fd5b80634d6fb775116103165780634d6fb7751461066157806352337242146106745780635ef9432a146106875780636352211e1461068f5780636468e317146106a257600080fd5b80633a0ec42e146106015780634035cc6c1461061457806342842e0e1461063b5780634850f2f01461064e57600080fd5b8063185153c3116103ca5780632ad612c3116103995780632ad612c3146105a25780632dd6cdc3146105b55780632f2ff15d146105c857806336568abe146105db57806336c7c12c146105ee57600080fd5b8063185153c31461052157806323b872dd14610536578063248a9ca31461054957806327dd1b001461056c57600080fd5b806306fdde031161041157806306fdde03146104a8578063081812fc146104bd578063095ea7b3146104e85780630b8d85bd146104fb5780631378d2bb1461050e57600080fd5b8062fdd58e1461044257806301ffc9a714610468578063026e402b1461048b57806303ad594c146104a0575b600080fd5b6104556104503660046152ca565b610ad5565b6040519081526020015b60405180910390f35b61047b61047636600461530c565b610b2a565b604051901515815260200161045f565b61049e6104993660046152ca565b610b35565b005b61047b610bce565b6104b0610be2565b60405161045f9190615379565b6104d06104cb36600461538c565b610c74565b6040516001600160a01b03909116815260200161045f565b61049e6104f63660046152ca565b610c9b565b61049e6105093660046153a5565b610cb4565b61045561051c3660046153c2565b610d5b565b61047b61052f36600461538c565b600c541190565b61049e61054436600461544e565b610d9d565b61045561055736600461538c565b60009081526020819052604090206001015490565b6104d061057a3660046152ca565b6000908152600d602090815260408083206001600160a01b0394851684529091529020541690565b61049e6105b036600461548f565b610dc8565b61049e6105c33660046154da565b610f28565b61049e6105d6366004615506565b6110c0565b61049e6105e9366004615506565b6110e5565b6015546104d0906001600160a01b031681565b61049e61060f3660046153a5565b611163565b6104557f00000000000000000000000000000000000000000000000000000000000f424081565b61049e61064936600461544e565b6111d7565b61049e61065c3660046153a5565b6111fc565b61045561066f366004615536565b611210565b61045561068236600461538c565b611266565b61049e6114a9565b6104d061069d36600461538c565b61154e565b6104556106b036600461538c565b6000908152600a602052604090205490565b61047b6106d036600461538c565b6115b3565b6104b061178c565b6104556106eb3660046153a5565b61181a565b61049e6106fe36600461560e565b6118a0565b61045561071136600461538c565b6119e1565b61047b610724366004615667565b611a0d565b6010546104d0906001600160a01b031681565b6104d061074a36600461538c565b611ae9565b61076261075d3660046156db565b611b34565b604080519687526001600160a01b039586166020880152860193909352908316606085015260808401521660a082015260c00161045f565b6107ad6107a836600461538c565b611c55565b60405161045f97969594939291906156fd565b6019546001600160a01b03166104d0565b6013546104d0906001600160a01b031681565b61047b6107f2366004615506565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b61045561082936600461538c565b611e54565b61049e61083c36600461577f565b611e7a565b61049e61084f3660046157b4565b611f13565b6104b0612019565b61049e61086a3660046157e2565b612028565b61045561087d366004615814565b612115565b6104556108903660046156db565b6123a2565b610455600081565b61049e6108ab366004615860565b6123e3565b61049e6108be36600461538c565b6123f7565b6011546104d0906001600160a01b031681565b61049e6108e436600461588e565b6124fe565b61049e6108f73660046153a5565b61252b565b61045561090a3660046158fa565b6125d6565b61045561091d366004615536565b61279d565b61093561093036600461538c565b612843565b60405161045f92919061595c565b6104b061095136600461538c565b61289c565b6104557f7935bd0ae54bc31f548c14dba4d37c5c64b3f8ca900cb468fb8abd54d5894f5581565b6014546104d0906001600160a01b031681565b6104557f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61049e6109c5366004615506565b612902565b6019546104d0906001600160a01b031681565b61049e6109eb36600461538c565b612927565b6104556109fe3660046157e2565b6129f9565b61049e610a113660046157e2565b612a77565b61047b610a243660046157b4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b610455610a603660046152ca565b612b58565b610935610a7336600461538c565b612b93565b60115461047b90600160a01b900460ff1681565b600c54610455565b610455610aa2366004615536565b612dcb565b61049e610ab5366004615506565b612e2e565b61049e612f16565b61049e610ad03660046159e0565b612f2c565b60006001600160a01b038316610afe57604051633649397d60e21b815260040160405180910390fd5b506001600160a01b03821660009081526007602090815260408083208484529091529020545b92915050565b6000610b248261310e565b60405162461bcd60e51b815260206004820152605860248201527f505254434c436f7265455243373231566f7465733a20726567756c617220646560448201527f6c65676174696f6e2064697361626c65642e20506c656173652075736520646560648201527f6c65676174696f6e2077697468207369676e61747572652e0000000000000000608482015260a4015b60405180910390fd5b6000610bdd600b5460ff161590565b905090565b606060018054610bf190615a41565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1d90615a41565b8015610c6a5780601f10610c3f57610100808354040283529160200191610c6a565b820191906000526020600020905b815481529060010190602001808311610c4d57829003601f168201915b5050505050905090565b6000610c7f8261314e565b506000908152600560205260409020546001600160a01b031690565b81610ca5816131b2565b610caf8383613274565b505050565b6000610cbf81613384565b816001600160a01b038116610d045760405162461bcd60e51b815260206004820152601b6024820152600080516020615e288339815191526044820152606401610bc5565b601580546001600160a01b0319166001600160a01b0385169081179091556040519081527f6e62e73badc47d5a0cd306cabd5fd4caa6c4964747a6f280da30bca7f5f55d47906020015b60405180910390a1505050565b60007f7935bd0ae54bc31f548c14dba4d37c5c64b3f8ca900cb468fb8abd54d5894f55610d8781613384565b610d938686868661338e565b9695505050505050565b826001600160a01b0381163314610db757610db7336131b2565b610dc284848461344b565b50505050565b81610dd481600c541190565b610df45760405163500f73d960e01b815260048101829052602401610bc5565b6015546001600160a01b03163314610e4e5760405162461bcd60e51b815260206004820152601760248201527f4f6e6c792072616e646f6d697a6572206d6179207365740000000000000000006044820152606401610bc5565b6000838152601760205260409020600281015415610eae5760405162461bcd60e51b815260206004820152601160248201527f536565647320616c7265616479207365740000000000000000000000000000006044820152606401610bc5565b610ebe60028083019085906151f8565b507fd5c9979d88f76677835fc3be4fc78545dfd5f7103adf04f7ab6893f419d0a75c84610eee6020860186615a8b565b610efe6040870160208801615a8b565b6040805193845262ffffff928316602085015291169082015260600160405180910390a150505050565b81610f3481600c541190565b610f545760405163500f73d960e01b815260048101829052602401610bc5565b6000610f5f81613384565b610f6d8362ffffff166134c2565b610fc55760405162461bcd60e51b8152602060048201526024808201527f6d61785061727469636c65732068617320746f206265203e203020616e64203c6044820152633d20314d60e01b6064820152608401610bc5565b60008481526017602052604090205462ffffff16156110565760405162461bcd60e51b815260206004820152604160248201527f6d61785061727469636c65732063616e206f6e6c79206265207570646174656460448201527f206966206e6f207061727469636c65732068617665206265656e206d696e74656064820152601960fa1b608482015260a401610bc5565b600084815260176020908152604091829020805465ffffff0000001916630100000062ffffff881690810291909117909155915191825285917fefc2d6220ea1e8114a7515784bc3f07354b2b3704dfc38dc51fd00d5a1acb113910160405180910390a250505050565b6000828152602081905260409020600101546110db81613384565b610caf83836134f5565b6001600160a01b03811633146111555760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610bc5565b61115f8282613593565b5050565b600061116e81613384565b816001600160a01b0381166111b35760405162461bcd60e51b815260206004820152601b6024820152600080516020615e288339815191526044820152606401610bc5565b5050601980546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b03811633146111f1576111f1336131b2565b610dc2848484613612565b600061120781613384565b61115f8261362d565b60004383106112325760405163281f6f0d60e01b815260040160405180910390fd5b6000828152600e602090815260408083206001600160a01b0388168452909152902061125e90846136bf565b949350505050565b60008060176000611276856119e1565b81526020808201929092526040908101600020815160e081018352815462ffffff808216835263010000008204169482019490945260ff600160301b85048116151593820193909352600160381b909304909116151560608301526001810180546080840191906112e690615a41565b80601f016020809104026020016040519081016040528092919081815260200182805461131290615a41565b801561135f5780601f106113345761010080835404028352916020019161135f565b820191906000526020600020905b81548152906001019060200180831161134257829003601f168201915b50505050508152602001600282018054806020026020016040519081016040528092919081815260200182805480156113e157602002820191906000526020600020906000905b82829054906101000a900462ffffff1662ffffff16815260200190600301906020826002010492830192600103820291508084116113a65790505b5050505050815260200160038201548152505090508060a00151516000036114285761140c836119e1565b604051635eca74c360e11b8152600401610bc591815260200190565b60008160a0015160008151811061144157611441615a75565b602002602001015162ffffff16905060008260a0015160018151811061146957611469615a75565b6020908102919091018101519084015162ffffff918216925016808261149563ffffffff861689615abc565b61149f9190615ad3565b610d939190615afc565b6019546001600160a01b031633146114d457604051635fc483c560e01b815260040160405180910390fd5b601154600160a01b900460ff16156114ff57604051631551a48f60e11b815260040160405180910390fd5b6011805474ffffffffffffffffffffffffffffffffffffffffff1916600160a01b1790556040517f51e2d870cc2e10853e38dc06fcdae46ad3c3f588f326608803dac6204541ad1690600090a1565b6000818152600360205260408120546001600160a01b031680610b245760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610bc5565b6000816115c181600c541190565b6115e15760405163500f73d960e01b815260048101829052602401610bc5565b6000838152601760209081526040808320815160e081018352815462ffffff808216835263010000008204169482019490945260ff600160301b85048116151593820193909352600160381b9093049091161515606083015260018101805460808401919061164f90615a41565b80601f016020809104026020016040519081016040528092919081815260200182805461167b90615a41565b80156116c85780601f1061169d576101008083540402835291602001916116c8565b820191906000526020600020905b8154815290600101906020018083116116ab57829003601f168201915b505050505081526020016002820180548060200260200160405190810160405280929190818152602001828054801561174a57602002820191906000526020600020906000905b82829054906101000a900462ffffff1662ffffff168152602001906003019060208260020104928301926001038202915080841161170f5790505b50505050508152602001600382015481525050905080606001511580156117825750806020015162ffffff16816000015162ffffff16145b9250505b50919050565b6016805461179990615a41565b80601f01602080910402602001604051908101604052809291908181526020018280546117c590615a41565b80156118125780601f106117e757610100808354040283529160200191611812565b820191906000526020600020905b8154815290600101906020018083116117f557829003601f168201915b505050505081565b60006001600160a01b0382166118845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610bc5565b506001600160a01b031660009081526004602052604090205490565b826118ac81600c541190565b6118cc5760405163500f73d960e01b815260048101829052602401610bc5565b60006118d781613384565b836001600160a01b03811661191c5760405162461bcd60e51b815260206004820152601b6024820152600080516020615e288339815191526044820152606401610bc5565b83805160000361196e5760405162461bcd60e51b815260206004820152601b60248201527f4d75737420696e707574206e6f6e2d656d70747920737472696e6700000000006044820152606401610bc5565b60008781526017602052604090206001016119898682615b5e565b5060008781526018602052604080822080546001600160a01b0319166001600160a01b038a161790555188917f2bcb029dd0f41b1e405e6a89616877e7291895e7686c45d4bb55d5c9467bca6b91a250505050505050565b6000610b247f00000000000000000000000000000000000000000000000000000000000f424083615c1e565b6040516bffffffffffffffffffffffff19606085811b8216602084015284901b166034820152604881018290526068810185905260009081906088016040516020818303038152906040528051906020012090508543108015611ade5750611acc87611ac6836040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b906137db565b6010546001600160a01b039081169116145b979650505050505050565b600081611af781600c541190565b611b175760405163500f73d960e01b815260048101829052602401610bc5565b50506000908152601860205260409020546001600160a01b031690565b60008060008060008087611b4981600c541190565b611b695760405163500f73d960e01b815260048101829052602401610bc5565b600089815260186020908152604091829020825160e08101845281546001600160a01b031681526001820154928101929092526002810154928201929092526003820154606082015260048201546080820152600582015460a0820181905260069092015460c08201529061271090611be2908b615abc565b611bec9190615c1e565b975061271081608001518a611c019190615abc565b611c0b9190615c1e565b93506127108160c001518a611c209190615abc565b611c2a9190615c1e565b6013549151601454999c6001600160a01b039384169c50919a50919098169793965094509192505050565b6000806000606060006060600087611c6e81600c541190565b611c8e5760405163500f73d960e01b815260048101829052602401610bc5565b6000898152601760209081526040808320815160e081018352815462ffffff808216835263010000008204169482019490945260ff600160301b85048116151593820193909352600160381b90930490911615156060830152600181018054608084019190611cfc90615a41565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2890615a41565b8015611d755780601f10611d4a57610100808354040283529160200191611d75565b820191906000526020600020905b815481529060010190602001808311611d5857829003601f168201915b5050505050815260200160028201805480602002602001604051908101604052809291908181526020018280548015611df757602002820191906000526020600020906000905b82829054906101000a900462ffffff1662ffffff1681526020019060030190602082600201049283019260010382029150808411611dbc5790505b505050505081526020016003820154815250509050806000015162ffffff169850806020015162ffffff1697508060400151965080608001519550806060015194508060a0015193508060c0015192505050919395979092949650565b6000818152600f60205260408120611e6b906137f7565b6001600160e01b031692915050565b6000611e8581613384565b818051600003611ed75760405162461bcd60e51b815260206004820152601b60248201527f4d75737420696e707574206e6f6e2d656d70747920737472696e6700000000006044820152606401610bc5565b6016611ee38482615b5e565b507f6741b2fc379fad678116fe3d4d4b9a1a184ab53ba36b86ad0fa66340b1ab41ad83604051610d4e9190615379565b6000611f1e81613384565b826001600160a01b038116611f635760405162461bcd60e51b815260206004820152601b6024820152600080516020615e288339815191526044820152606401610bc5565b826001600160a01b038116611fa85760405162461bcd60e51b815260206004820152601b6024820152600080516020615e288339815191526044820152606401610bc5565b601380546001600160a01b038781166001600160a01b03199283168117909355601480549188169190921681179091556040805192835260208301919091527f64d878b2b68bdf9ccd677c8357430b6bcf61495ba360385038486ab819587004910160405180910390a15050505050565b606060028054610bf190615a41565b8361203481600c541190565b6120545760405163500f73d960e01b815260048101829052602401610bc5565b600061205f81613384565b6127108361206d8688615ad3565b6120779190615ad3565b146120c45760405162461bcd60e51b815260206004820152601560248201527f5072696d6172792073706c697420213d203130302500000000000000000000006044820152606401610bc5565b60008681526018602052604080822060048101889055600581018790556006018590555187917f98e5eecea8c1ac0d6a3c03c8ea20a88b6645f70bc6d45d59a2d752c9ded023b491a2505050505050565b60008261212381600c541190565b6121435760405163500f73d960e01b815260048101829052602401610bc5565b61214b613831565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff161580156121b957503360009081527f0781d7cac9c378efa22a7481e4d4d29704a680ddf504b3bc50b517700ee11e6c602052604090205460ff16155b156121d757604051631eb49d6d60e11b815260040160405180910390fd5b8262ffffff166000036122045760405163383ecc7560e21b815262ffffff84166004820152602401610bc5565b60008481526017602052604081208054909162ffffff808316926301000000900416906122318784615c32565b90508162ffffff168162ffffff1611156122655760405163383ecc7560e21b815262ffffff88166004820152602401610bc5565b8354600160301b900460ff161580156122ad57503360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16155b156122ce57604051630e7309a160e31b815260048101899052602401610bc5565b835462ffffff191662ffffff82811691821786558481167f00000000000000000000000000000000000000000000000000000000000f42408b020191908416900361235e5761231f43610100615ad3565b6003860155845466ff0000000000001916855560405189907fce5e4e5a1bcb4f2c53442ea53357a531cbdb9dfeb50f4cf80b6608f8b95db1c690600090a25b60005b8862ffffff16811015612389576123818b61237c8385615ad3565b61388a565b600101612361565b5095505050505061239a6001601255565b509392505050565b60004383106123c45760405163281f6f0d60e01b815260040160405180910390fd5b6000828152600f602052604090206123dc90846136bf565b9392505050565b816123ed816131b2565b610caf83836138a4565b8061240381600c541190565b6124235760405163500f73d960e01b815260048101829052602401610bc5565b600061242e81613384565b600083815260176020526040902060030154801580159061244e57508043115b61249a5760405162461bcd60e51b815260206004820152601660248201527f546f6f206561726c7920746f20736574207365656473000000000000000000006044820152606401610bc5565b6015546040516360f6c63f60e11b8152600481018690526001600160a01b039091169063c1ed8c7e90602401600060405180830381600087803b1580156124e057600080fd5b505af11580156124f4573d6000803e3d6000fd5b5050505050505050565b836001600160a01b038116331461251857612518336131b2565b612524858585856138af565b5050505050565b6019546001600160a01b0316331461255657604051635fc483c560e01b815260040160405180910390fd5b601154600160a01b900460ff161561258157604051631551a48f60e11b815260040160405180910390fd5b601180546001600160a01b0319166001600160a01b0383169081179091556040519081527f9f513fe86dc42fdbac355fa4d9b1d5be7b5e6cd2df67e30db8003766568de476906020015b60405180910390a150565b6000806125e281613384565b826001600160a01b0381166126275760405162461bcd60e51b815260206004820152601b6024820152600080516020615e288339815191526044820152606401610bc5565b8580516000036126795760405162461bcd60e51b815260206004820152601b60248201527f4d75737420696e707574206e6f6e2d656d70747920737472696e6700000000006044820152606401610bc5565b60006126898762ffffff16613927565b90507cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8111156126f85760405162461bcd60e51b815260206004820152601860248201527f436f6c6c656374696f6e206964203e20323332206269747300000000000000006044820152606401610bc5565b600081815260186020908152604080832080546001600160a01b0319166001600160a01b038b161781556101f460018083019190915560fa60028301819055600383015560048201859055612710600583015560069091018490556017909252909120016127668982615b5e565b506000818152601760205260409020805462ffffff891663010000000265ffffff0000001990911617905593505050509392505050565b60006127a98483610ad5565b83106128105760405162461bcd60e51b815260206004820152603060248201527f4552433732314d756c7469436f6c6c656374696f6e3a206f776e657220696e6460448201526f6578206f7574206f6620626f756e647360801b6064820152608401610bc5565b506001600160a01b0392909216600090815260086020908152604080832094835293815283822092825291909152205490565b606080612867836000908152600360205260409020546001600160a01b0316151590565b6128875760405163ed15e6cf60e01b815260048101849052602401610bc5565b612893610a73846119e1565b91509150915091565b60606128a78261314e565b60006128b1613a40565b905060008151116128d157604051806020016040528060008152506123dc565b806128db84613a4f565b6040516020016128ec929190615c55565b6040516020818303038152906040529392505050565b60008281526020819052604090206001015461291d81613384565b610caf8383613593565b600061293281613384565b8161293e81600c541190565b61295e5760405163500f73d960e01b815260048101829052602401610bc5565b6000838152601760205260409020805460ff600160301b808304821615810266ff000000000000199093169290921792839055910416156129c95760405183907f22585281de0514bb24dd2493815bbecb10e5ea5106b205f100f60e4413c3d99d90600090a2505050565b60405183907fe23909040bce59cacbb68bb30167fc314ae2f73037a25b7cdb4fa210e601c26190600090a2505050565b600084612a0781600c541190565b612a275760405163500f73d960e01b815260048101829052602401610bc5565b6000868152601760205260409020546301000000900462ffffff16836064612a4f8789615abc565b612a599190615c1e565b612a639088615c84565b612a6d9190615abc565b610d939190615c1e565b83612a8381600c541190565b612aa35760405163500f73d960e01b815260048101829052602401610bc5565b6000612aae81613384565b61271083612abc8688615ad3565b612ac69190615ad3565b1115612b075760405162461bcd60e51b815260206004820152601060248201526f526f79616c74696573203e203130302560801b6044820152606401610bc5565b60008681526018602052604080822060018101889055600281018790556003018590555187917fb978f9f2416f2faabd6fcccddbb4512f611decc36b6d3b48a158f6c419bc9d6e91a2505050505050565b6000818152600e602090815260408083206001600160a01b03861684529091528120612b83906137f7565b6001600160e01b03169392505050565b60608082612ba281600c541190565b612bc25760405163500f73d960e01b815260048101829052602401610bc5565b6040805160038082526080820190925290602082016060803683375050604080516003808252608082019092529295509050602082016060803683375050506000858152601860209081526040808320815160e08101835281546001600160a01b031681526001820154938101849052600282015492810183905260038201546060820181905260048301546080830152600583015460a083015260069092015460c082015294965091928315612ccd578460000151888281518110612c8a57612c8a615a75565b6001600160a01b0390921660209283029190910190910152838782612cae81615c97565b935081518110612cc057612cc0615a75565b6020026020010181815250505b8215612d395760145488516001600160a01b0390911690899083908110612cf657612cf6615a75565b6001600160a01b0390921660209283029190910190910152828782612d1a81615c97565b935081518110612d2c57612d2c615a75565b6020026020010181815250505b8115612da55760135488516001600160a01b0390911690899083908110612d6257612d62615a75565b6001600160a01b0390921660209283029190910190910152818782612d8681615c97565b935081518110612d9857612d98615a75565b6020026020010181815250505b8060031115612dc05780600303808951038952808851038852505b505050505050915091565b60007f7935bd0ae54bc31f548c14dba4d37c5c64b3f8ca900cb468fb8abd54d5894f55612df781613384565b83612e0381600c541190565b612e235760405163500f73d960e01b815260048101829052602401610bc5565b610d93868686613ae2565b7f7935bd0ae54bc31f548c14dba4d37c5c64b3f8ca900cb468fb8abd54d5894f55612e5881613384565b82612e6481600c541190565b612e845760405163500f73d960e01b815260048101829052602401610bc5565b60008481526017602052604090208054600160381b900460ff1615612ebc57604051631b42fb7f60e31b815260040160405180910390fd5b805467ff000000000000001916600160381b1781556040516001600160a01b038516815285907f456a5e5d54a56beacad5651c110043648a245fdf1cb3a74fcfbe3fed592ec9779060200160405180910390a25050505050565b6000612f2181613384565b612f29613bb9565b50565b612f398282338787611a0d565b612f5657604051638baa579f60e01b815260040160405180910390fd5b610dc28484613c44565b6060610b246001600160a01b03831660145b60606000612f81836002615abc565b612f8c906002615ad3565b67ffffffffffffffff811115612fa457612fa461556b565b6040519080825280601f01601f191660200182016040528015612fce576020820181803683370190505b509050600360fc1b81600081518110612fe957612fe9615a75565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061301857613018615a75565b60200101906001600160f81b031916908160001a905350600061303c846002615abc565b613047906001615ad3565b90505b60018111156130bf576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061307b5761307b615a75565b1a60f81b82828151811061309157613091615a75565b60200101906001600160f81b031916908160001a90535060049490941c936130b881615cb0565b905061304a565b5083156123dc5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bc5565b60006001600160e01b031982166380ac58cd60e01b148061313f57506001600160e01b03198216635b5e139f60e01b145b80610b245750610b2482613ccc565b6000818152600360205260409020546001600160a01b0316612f295760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610bc5565b6011546001600160a01b031680158015906131d757506000816001600160a01b03163b115b1561115f57604051633185c44d60e21b81523060048201526001600160a01b03838116602483015282169063c617113490604401602060405180830381865afa158015613228573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061324c9190615cc7565b61115f57604051633b79c77360e21b81526001600160a01b0383166004820152602401610bc5565b600061327f8261154e565b9050806001600160a01b0316836001600160a01b0316036132ec5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bc5565b336001600160a01b038216148061330857506133088133610a24565b61337a5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610bc5565b610caf8383613d01565b612f298133613d6f565b600081815b818110156134415760008585838181106133af576133af615a75565b905060200201359050876001600160a01b03166133cb8261154e565b6001600160a01b031614613404576040516302139f1360e61b81526001600160a01b038916600482015260248101829052604401610bc5565b8661340e826119e1565b1461342f5760405163500f73d960e01b815260048101889052602401610bc5565b61343881613de2565b50600101613393565b5095945050505050565b6134553382613e8f565b6134b75760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610bc5565b610caf838383613f0d565b60008082118015610b245750507f00000000000000000000000000000000000000000000000000000000000f4240101590565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1661115f576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561354f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff161561115f576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b610caf838383604051806020016040528060008152506124fe565b6001600160a01b0381166136715760405162461bcd60e51b815260206004820152601b6024820152600080516020615e288339815191526044820152606401610bc5565b601080546001600160a01b0319166001600160a01b0383169081179091556040519081527f5553331329228fbd4123164423717a4a7539f6dfa1c3279a923b98fd681a6c73906020016125cb565b60004382106137105760405162461bcd60e51b815260206004820181905260248201527f436865636b706f696e74733a20626c6f636b206e6f7420796574206d696e65646044820152606401610bc5565b600061371b83614102565b845490915060008160058111156137795760006137378461416b565b6137419085615c84565b60008981526020902090915081015463ffffffff908116908616101561376957809150613777565b613774816001615ad3565b92505b505b600061378788868585614253565b905080156137c3576137ac8861379e600184615c84565b600091825260209091200190565b5464010000000090046001600160e01b03166137c6565b60005b6001600160e01b031698975050505050505050565b60008060006137ea85856142a9565b9150915061239a816142ee565b80546000908015613828576138118361379e600184615c84565b5464010000000090046001600160e01b03166123dc565b60009392505050565b6002601254036138835760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bc5565b6002601255565b61115f828260405180602001604052806000815250614438565b61115f33838361446b565b6138b93383613e8f565b61391b5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610bc5565b610dc284848484614539565b600b5460009060ff161561397d5760405162461bcd60e51b815260206004820152601960248201527f4e657720636f6c6c656374696f6e7320666f7262696464656e000000000000006044820152606401610bc5565b613986826134c2565b6139f85760405162461bcd60e51b815260206004820152603960248201527f4e756d626572206f66207061727469636c6573206d757374206265203e20302060448201527f2626203c3d204d41585f434f4c4c454354494f4e5f53495a45000000000000006064820152608401610bc5565b600c80549081906000613a0a83615c97565b909155505060405181907f7f51fefb7dc58758a80c274fa8aac5a9ae05c5e7774fd84ddd339f5625f3b27f90600090a292915050565b606060168054610bf190615a41565b60606000613a5c8361456c565b600101905060008167ffffffffffffffff811115613a7c57613a7c61556b565b6040519080825280601f01601f191660200182016040528015613aa6576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084613ab057509392505050565b6001600160a01b038316600090815260076020908152604080832085845290915281205482811015613b475760405163eab5580560e01b81526001600160a01b0386166004820152602481018590526044810184905260648101829052608401610bc5565b60005b83811015613baf576001600160a01b038616600090815260086020908152604080832088845290915281208183613b82600187615c84565b613b8c9190615c84565b8152602001908152602001600020549050613ba681613de2565b50600101613b4a565b5091949350505050565b600b5460ff1615613c0c5760405162461bcd60e51b815260206004820152601160248201527f416c726561647920666f7262696464656e0000000000000000000000000000006044820152606401610bc5565b600b805460ff191660011790556040517fe5bd5030d170c70c3a48d78fd10e7909b9f1b202dd6fabdf4a111c0f6ab4d10190600090a1565b6000818152600d60209081526040808320338085529083529281902080546001600160a01b038781166001600160a01b031983168117909355835187815293519116939192849286927f287e04de574701d97a55bd9ea85b32defecf76a607b8007ee9ae8c126bf7a7469281900390910190a4610dc28185613cc6858761464e565b8661465a565b60006001600160e01b03198216637965db0b60e01b1480610b2457506301ffc9a760e01b6001600160e01b0319831614610b24565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613d368261154e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1661115f57613da081612f60565b613dab836020612f72565b604051602001613dbc929190615ce4565b60408051601f198184030181529082905262461bcd60e51b8252610bc591600401615379565b6000613ded8261154e565b9050613dfd8160008460016147ae565b613e068261154e565b600083815260056020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526004845282852080546000190190558785526003909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a461115f8160008460016147ba565b600080613e9b8361154e565b9050806001600160a01b0316846001600160a01b03161480613ee257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b8061125e5750836001600160a01b0316613efb84610c74565b6001600160a01b031614949350505050565b826001600160a01b0316613f208261154e565b6001600160a01b031614613f845760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610bc5565b6001600160a01b038216613fe65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc5565b613ff383838360016147ae565b826001600160a01b03166140068261154e565b6001600160a01b03161461406a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610bc5565b600081815260056020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260048552838620805460001901905590871680865283862080546001019055868652600390945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4610caf83838360016147ba565b600063ffffffff8211156141675760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b6064820152608401610bc5565b5090565b60008160000361417d57506000919050565b6000600161418a846147c6565b901c6001901b905060018184816141a3576141a3615ae6565b048201901c905060018184816141bb576141bb615ae6565b048201901c905060018184816141d3576141d3615ae6565b048201901c905060018184816141eb576141eb615ae6565b048201901c9050600181848161420357614203615ae6565b048201901c9050600181848161421b5761421b615ae6565b048201901c9050600181848161423357614233615ae6565b048201901c90506123dc8182858161424d5761424d615ae6565b0461485a565b60005b8183101561239a57600061426a8484614870565b60008781526020902090915063ffffffff86169082015463ffffffff161115614295578092506142a3565b6142a0816001615ad3565b93505b50614256565b60008082516041036142df5760208301516040840151606085015160001a6142d38782858561488b565b945094505050506142e7565b506000905060025b9250929050565b600081600481111561430257614302615d65565b0361430a5750565b600181600481111561431e5761431e615d65565b0361436b5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610bc5565b600281600481111561437f5761437f615d65565b036143cc5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610bc5565b60038160048111156143e0576143e0615d65565b03612f295760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610bc5565b614442838361494f565b61444f6000848484614af2565b610caf5760405162461bcd60e51b8152600401610bc590615d7b565b816001600160a01b0316836001600160a01b0316036144cc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bc5565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b614544848484613f0d565b61455084848484614af2565b610dc25760405162461bcd60e51b8152600401610bc590615d7b565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106145b5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106145e1576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106145ff57662386f26fc10000830492506010015b6305f5e1008310614617576305f5e100830492506008015b612710831061462b57612710830492506004015b6064831061463d576064830492506002015b600a8310610b245760010192915050565b60006123dc8383610ad5565b826001600160a01b0316846001600160a01b03161415801561467c5750600082115b15610dc2576001600160a01b03841615614715576000818152600e602090815260408083206001600160a01b0388168452909152812081906146c190614bf086614bfc565b604080518381526020810183905290810186905291935091506001600160a01b038716907f21a99d51b8a0a2e2ead709843a1ecfaab977908135cf1c085c0a6246eea6e0f09060600160405180910390a250505b6001600160a01b03831615610dc2576000818152600e602090815260408083206001600160a01b03871684529091528120819061475590614c3486614bfc565b604080518381526020810183905290810186905291935091506001600160a01b038616907f21a99d51b8a0a2e2ead709843a1ecfaab977908135cf1c085c0a6246eea6e0f09060600160405180910390a2505050505050565b610dc284848484614c40565b610dc284848484614ce7565b600080608083901c156147db57608092831c92015b604083901c156147ed57604092831c92015b602083901c156147ff57602092831c92015b601083901c1561481157601092831c92015b600883901c1561482357600892831c92015b600483901c1561483557600492831c92015b600283901c1561484757600292831c92015b600183901c15610b245760010192915050565b600081831061486957816123dc565b5090919050565b600061487f6002848418615c1e565b6123dc90848416615ad3565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156148c25750600090506003614946565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015614916573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661493f57600060019250925050614946565b9150600090505b94509492505050565b6001600160a01b0382166149a55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bc5565b6000818152600360205260409020546001600160a01b031615614a0a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bc5565b614a186000838360016147ae565b6000818152600360205260409020546001600160a01b031615614a7d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bc5565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461115f6000838360016147ba565b60006001600160a01b0384163b15614be857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614b36903390899088908890600401615dd8565b6020604051808303816000875af1925050508015614b71575060408051601f3d908101601f19168201909252614b6e91810190615e0a565b60015b614bce573d808015614b9f576040519150601f19603f3d011682016040523d82523d6000602084013e614ba4565b606091505b508051600003614bc65760405162461bcd60e51b8152600401610bc590615d7b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061125e565b50600161125e565b60006123dc8284615c84565b600080614c2785614c22614c0f886137f7565b6001600160e01b0316868863ffffffff16565b614d00565b915091505b935093915050565b60006123dc8284615ad3565b614c4c84848484614d34565b6000614c57836119e1565b90506001600160a01b03851615614c7857614c73858483614dbc565b614c9d565b6000818152600a60205260408120805460019290614c97908490615ad3565b90915550505b6001600160a01b03841615614cbc57614cb7848483614ee2565b612524565b6000818152600a60205260408120805460019290614cdb908490615c84565b90915550505050505050565b614cfb848483614cf6866119e1565b614f59565b610dc2565b600080614d1e84614d1043614102565b614d1986614fec565b615055565b6001600160e01b03918216969116945092505050565b6001811115610dc2576001600160a01b03841615614d7a576001600160a01b03841660009081526004602052604081208054839290614d74908490615c84565b90915550505b6001600160a01b03831615610dc2576001600160a01b03831660009081526004602052604081208054839290614db1908490615ad3565b909155505050505050565b6001600160a01b0383166000908152600760209081526040808320848452909152812054614dec90600190615c84565b6001600160a01b03851660009081526009602090815260408083208684528252808320878452909152902054909150808214614e74576001600160a01b03851660008181526008602090815260408083208784528252808320868452825280832054858452818420819055938352600982528083208784528252808320938352929052208190555b6001600160a01b0385166000818152600960209081526040808320878452825280832088845282528083208390558383526008825280832087845282528083208684528252808320839055928252600781528282208683529052908120805460019290614cdb908490615c84565b6001600160a01b0383166000818152600760209081526040808320858452808352818420805486865260088552838620888752855283862081875285528386208990559585526009845282852087865284528285208886528452918420859055858452909152805460019290614db1908490615ad3565b6001600160a01b038416614f85576000818152600f60205260409020614f8290614c3484614bfc565b50505b6001600160a01b038316614fb1576000818152600f60205260409020614fae90614bf084614bfc565b50505b6000818152600d602090815260408083206001600160a01b0388811685529252808320548683168452922054610dc29282169116848461465a565b60006001600160e01b038211156141675760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401610bc5565b82546000908190801561519e5760006150738761379e600185615c84565b60408051808201909152905463ffffffff8082168084526401000000009092046001600160e01b0316602084015291925090871610156150f55760405162461bcd60e51b815260206004820152601760248201527f436865636b706f696e743a20696e76616c6964206b65790000000000000000006044820152606401610bc5565b805163ffffffff80881691160361513e57846151168861379e600186615c84565b80546001600160e01b03929092166401000000000263ffffffff90921691909117905561518e565b6040805180820190915263ffffffff80881682526001600160e01b0380881660208085019182528b54600181018d5560008d81529190912094519151909216640100000000029216919091179101555b602001519250839150614c2c9050565b50506040805180820190915263ffffffff80851682526001600160e01b0380851660208085019182528854600181018a5560008a815291822095519251909316640100000000029190931617920191909155905081614c2c565b82805482825590600052602060002090600901600a900481019282156152995791602002820160005b8382111561526857833562ffffff1683826101000a81548162ffffff021916908362ffffff1602179055509260200192600301602081600201049283019260010302615221565b80156152975782816101000a81549062ffffff0219169055600301602081600201049283019260010302615268565b505b506141679291505b8082111561416757600081556001016152a1565b6001600160a01b0381168114612f2957600080fd5b600080604083850312156152dd57600080fd5b82356152e8816152b5565b946020939093013593505050565b6001600160e01b031981168114612f2957600080fd5b60006020828403121561531e57600080fd5b81356123dc816152f6565b60005b8381101561534457818101518382015260200161532c565b50506000910152565b60008151808452615365816020860160208601615329565b601f01601f19169290920160200192915050565b6020815260006123dc602083018461534d565b60006020828403121561539e57600080fd5b5035919050565b6000602082840312156153b757600080fd5b81356123dc816152b5565b600080600080606085870312156153d857600080fd5b84356153e3816152b5565b935060208501359250604085013567ffffffffffffffff8082111561540757600080fd5b818701915087601f83011261541b57600080fd5b81358181111561542a57600080fd5b8860208260051b850101111561543f57600080fd5b95989497505060200194505050565b60008060006060848603121561546357600080fd5b833561546e816152b5565b9250602084013561547e816152b5565b929592945050506040919091013590565b600080606083850312156154a257600080fd5b82359150836060840111156154b657600080fd5b50926020919091019150565b803562ffffff811681146154d557600080fd5b919050565b600080604083850312156154ed57600080fd5b823591506154fd602084016154c2565b90509250929050565b6000806040838503121561551957600080fd5b82359150602083013561552b816152b5565b809150509250929050565b60008060006060848603121561554b57600080fd5b8335615556816152b5565b95602085013595506040909401359392505050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261559257600080fd5b813567ffffffffffffffff808211156155ad576155ad61556b565b604051601f8301601f19908116603f011681019082821181831017156155d5576155d561556b565b816040528381528660208588010111156155ee57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060006060848603121561562357600080fd5b833592506020840135615635816152b5565b9150604084013567ffffffffffffffff81111561565157600080fd5b61565d86828701615581565b9150509250925092565b600080600080600060a0868803121561567f57600080fd5b853567ffffffffffffffff81111561569657600080fd5b6156a288828901615581565b9550506020860135935060408601356156ba816152b5565b925060608601356156ca816152b5565b949793965091946080013592915050565b600080604083850312156156ee57600080fd5b50508035926020909101359150565b878152600060208881840152871515604084015260e0606084015261572560e084018861534d565b861515608085015283810360a085015285518082528287019183019060005b8181101561576557835162ffffff1683529284019291840191600101615744565b50508093505050508260c083015298975050505050505050565b60006020828403121561579157600080fd5b813567ffffffffffffffff8111156157a857600080fd5b61125e84828501615581565b600080604083850312156157c757600080fd5b82356157d2816152b5565b9150602083013561552b816152b5565b600080600080608085870312156157f857600080fd5b5050823594602084013594506040840135936060013592509050565b60008060006060848603121561582957600080fd5b8335615834816152b5565b925060208401359150615849604085016154c2565b90509250925092565b8015158114612f2957600080fd5b6000806040838503121561587357600080fd5b823561587e816152b5565b9150602083013561552b81615852565b600080600080608085870312156158a457600080fd5b84356158af816152b5565b935060208501356158bf816152b5565b925060408501359150606085013567ffffffffffffffff8111156158e257600080fd5b6158ee87828801615581565b91505092959194509250565b60008060006060848603121561590f57600080fd5b833567ffffffffffffffff81111561592657600080fd5b61593286828701615581565b935050615941602085016154c2565b91506040840135615951816152b5565b809150509250925092565b604080825283519082018190526000906020906060840190828701845b8281101561599e5781516001600160a01b031684529284019290840190600101615979565b5050508381038285015284518082528583019183019060005b818110156159d3578351835292840192918401916001016159b7565b5090979650505050505050565b600080600080608085870312156159f657600080fd5b8435615a01816152b5565b935060208501359250604085013567ffffffffffffffff811115615a2457600080fd5b615a3087828801615581565b949793965093946060013593505050565b600181811c90821680615a5557607f821691505b60208210810361178657634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060208284031215615a9d57600080fd5b6123dc826154c2565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610b2457610b24615aa6565b80820180821115610b2457610b24615aa6565b634e487b7160e01b600052601260045260246000fd5b600082615b0b57615b0b615ae6565b500690565b601f821115610caf57600081815260208120601f850160051c81016020861015615b375750805b601f850160051c820191505b81811015615b5657828155600101615b43565b505050505050565b815167ffffffffffffffff811115615b7857615b7861556b565b615b8c81615b868454615a41565b84615b10565b602080601f831160018114615bc15760008415615ba95750858301515b600019600386901b1c1916600185901b178555615b56565b600085815260208120601f198616915b82811015615bf057888601518255948401946001909101908401615bd1565b5085821015615c0e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082615c2d57615c2d615ae6565b500490565b62ffffff818116838216019080821115615c4e57615c4e615aa6565b5092915050565b60008351615c67818460208801615329565b835190830190615c7b818360208801615329565b01949350505050565b81810381811115610b2457610b24615aa6565b600060018201615ca957615ca9615aa6565b5060010190565b600081615cbf57615cbf615aa6565b506000190190565b600060208284031215615cd957600080fd5b81516123dc81615852565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351615d1c816017850160208801615329565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351615d59816028840160208801615329565b01602801949350505050565b634e487b7160e01b600052602160045260246000fd5b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152610d93608083018461534d565b600060208284031215615e1c57600080fd5b81516123dc816152f656fe4d75737420696e707574206e6f6e2d7a65726f20616464726573730000000000a264697066735822122024e8bb7c2aba768fce6d4ee6589a40d55ee11074a1941ce12f77f9b8d8d654f664736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000800000000000000000000000004cb2cb5555fe651586d7765bed5d6ba7debc4e81000000000000000000000000fcec40aa7d9ef4438510366e53b98690878862e50000000000000000000000003456b98963eadcaed6534a2bff6d3d56c7ba8038000000000000000000000000000000000000000000000000000000000000004168747470733a2f2f6170692d70726f642e7061727469636c65636f6c6c656374696f6e2e636f6d2f6170692f76312f7061727469636c652d6d657461646174612f00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _bURI (string): https://api-prod.particlecollection.com/api/v1/particle-metadata/
Arg [1] : _delegationSigner (address): 0x4cb2Cb5555Fe651586d7765BED5D6bA7deBC4E81
Arg [2] : _FJMAddress (address): 0xfCec40AA7D9Ef4438510366E53B98690878862E5
Arg [3] : _DAOAddress (address): 0x3456B98963eADCaed6534A2bFf6D3D56c7BA8038

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000004cb2cb5555fe651586d7765bed5d6ba7debc4e81
Arg [2] : 000000000000000000000000fcec40aa7d9ef4438510366e53b98690878862e5
Arg [3] : 0000000000000000000000003456b98963eadcaed6534a2bff6d3d56c7ba8038
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [5] : 68747470733a2f2f6170692d70726f642e7061727469636c65636f6c6c656374
Arg [6] : 696f6e2e636f6d2f6170692f76312f7061727469636c652d6d65746164617461
Arg [7] : 2f00000000000000000000000000000000000000000000000000000000000000


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.