ETH Price: $3,382.93 (+0.23%)

Token

BoBlur Farmer (BOBLUR)
 

Overview

Max Total Supply

82 BOBLUR

Holders

70

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zeusy.eth
Balance
1 BOBLUR
0x668d0c0e4a354a9927e791b45bdf24ae20319b22
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:
BoBlurFarmer

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 15 : BoBlurFarmer.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.9 <0.9.0;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import './DefaultOperatorFilterer.sol';


contract BoBlurFarmer is ERC721A, Ownable, DefaultOperatorFilterer, ReentrancyGuard {
  using Strings for uint256;

  string public tokenName = "BoBlur Farmer";
  string public tokenSymbol = "BOBLUR";
  uint256 public maxSupply = 5000;
  uint256 public maxReservedSupply = 0;

  uint256 public maxMintAddress = 5;
  uint256 public maxWLMintAddress = 1;
  bytes32 public merkleRoot;
  mapping(address => bool) public mintClaimed; 

  bool public paused = false;
  bool public whitelistMintEnabled = true;
  bool public revealed = false;

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri = "";

  uint256 public wlEthCost = 0.002 ether;
  uint256 public wlBlurCost = 1 ether;
  uint256 public ethCost = 0.005 ether;
  uint256 public blurCost = 3 ether;

  ERC20 public MyToken;

  constructor(address token) ERC721A(tokenName, tokenSymbol) {
    MyToken = ERC20(token);
  }

  function mintWithBlur(uint256 _mintAmount, bytes32[] calldata _merkleProof) public {
		if (whitelistMintEnabled == true){
			bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
      require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');
      require(_mintAmount > 0 && _mintAmount <= maxWLMintAddress, 'Invalid mint amount!');
    }
		
    require(!paused, 'The contract is paused!');
    require(_mintAmount > 0 && _mintAmount <= maxMintAddress, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= (maxSupply - maxReservedSupply), 'Max supply exceeded!');
    require(!mintClaimed[_msgSender()], 'Address already claimed!');
    require(MyToken.allowance(msg.sender, address(this)) >= updateMintBlurCost(_mintAmount), "Not enough of ERC20 token");//To ensure they will deposit the right amount
    
    MyToken.transferFrom(msg.sender, owner(), updateMintBlurCost(_mintAmount));

    mintClaimed[_msgSender()] = true;
    _safeMint(_msgSender(), _mintAmount);
  }

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

   function mint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintPriceCompliance(_mintAmount) {
		if (whitelistMintEnabled == true){
			bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
      require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');
      require(_mintAmount > 0 && _mintAmount <= maxWLMintAddress, 'Invalid mint amount!');
    }
		
		require(!paused, 'The contract is paused!');
		require(_mintAmount > 0 && _mintAmount <= maxMintAddress, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= (maxSupply - maxReservedSupply), 'Max supply exceeded!');
		require(!mintClaimed[_msgSender()], 'Address already claimed!');

    mintClaimed[_msgSender()] = true;
    _safeMint(_msgSender(), _mintAmount);
  }

  function teamMint(uint256 _mintAmount, address _receiver) public onlyOwner {
	require((totalSupply() + _mintAmount) <= maxSupply, 'Max supply exceeded!');
    _safeMint(_receiver, _mintAmount);
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setToken(address token) public onlyOwner {
    MyToken = ERC20(token);
  }

  function setWLBlurCost(uint256 _cost) public onlyOwner {
    wlBlurCost = _cost;
  }

  function setWLEthCost(uint256 _wlCost) public onlyOwner {
    wlEthCost = _wlCost;
  }

  function setBlurCost(uint256 _cost) public onlyOwner {
    blurCost = _cost;
  }

  function setEthCost(uint256 _wlCost) public onlyOwner {
    ethCost = _wlCost;
  }

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

  function setMaxReservedSupply(uint256 _newMaxReservedSupply) public onlyOwner {
    require(_newMaxReservedSupply <= (maxSupply - totalSupply()));
    maxReservedSupply = _newMaxReservedSupply;
  }

  function setmaxMintAddress(uint256 _maxMintAddress) public onlyOwner {
    maxMintAddress = _maxMintAddress;
  }

  function setMaxWLMintAddress(uint256 _maxMintAddress) public onlyOwner {
    maxWLMintAddress = _maxMintAddress;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

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

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

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

  // Internal ->
  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function updateMintCost(uint256 _amount) internal view returns (uint256 _cost) {
    if (whitelistMintEnabled) {
      return wlEthCost * (_amount -1);
    }

    return ethCost * _amount;
    
  }

   function updateMintBlurCost(uint256 _amount) internal view returns (uint256 _cost) {
    if (whitelistMintEnabled) {
      return wlBlurCost * _amount;
    }

    return blurCost * _amount;
    
  }

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

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

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

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

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

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

File 2 of 15 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

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

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 3 of 15 : 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 4 of 15 : 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 5 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 6 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 8 of 15 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 15 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 15 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

    modifier onlyAllowedOperator(address from) virtual {
        // 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);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

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

File 11 of 15 : 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 12 of 15 : 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 13 of 15 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 14 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MyToken","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blurCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReservedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLMintAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintWithBlur","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setBlurCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlCost","type":"uint256"}],"name":"setEthCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxReservedSupply","type":"uint256"}],"name":"setMaxReservedSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAddress","type":"uint256"}],"name":"setMaxWLMintAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWLBlurCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlCost","type":"uint256"}],"name":"setWLEthCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAddress","type":"uint256"}],"name":"setmaxMintAddress","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":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSymbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlBlurCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlEthCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280600d81526020017f426f426c7572204661726d657200000000000000000000000000000000000000815250600a90816200004a919062000913565b506040518060400160405280600681526020017f424f424c55520000000000000000000000000000000000000000000000000000815250600b908162000091919062000913565b50611388600c556000600d556005600e556001600f556000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff021916908315150217905550604051806020016040528060008152506013908162000118919062000913565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601490816200015f919062000913565b50604051806020016040528060008152506015908162000180919062000913565b5066071afd498d0000601655670de0b6b3a76400006017556611c37937e080006018556729a2241af62c0000601955348015620001bc57600080fd5b50604051620055fe380380620055fe8339818101604052810190620001e2919062000a64565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001600a8054620002089062000702565b80601f0160208091040260200160405190810160405280929190818152602001828054620002369062000702565b8015620002875780601f106200025b5761010080835404028352916020019162000287565b820191906000526020600020905b8154815290600101906020018083116200026957829003601f168201915b5050505050600b80546200029b9062000702565b80601f0160208091040260200160405190810160405280929190818152602001828054620002c99062000702565b80156200031a5780601f10620002ee576101008083540402835291602001916200031a565b820191906000526020600020905b815481529060010190602001808311620002fc57829003601f168201915b5050505050816002908162000330919062000913565b50806003908162000342919062000913565b5062000353620005c260201b60201c565b60008190555050506200037b6200036f620005cb60201b60201c565b620005d360201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200057057801562000436576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620003fc92919062000aa7565b600060405180830381600087803b1580156200041757600080fd5b505af11580156200042c573d6000803e3d6000fd5b505050506200056f565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620004f0576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620004b692919062000aa7565b600060405180830381600087803b158015620004d157600080fd5b505af1158015620004e6573d6000803e3d6000fd5b505050506200056e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000539919062000ad4565b600060405180830381600087803b1580156200055457600080fd5b505af115801562000569573d6000803e3d6000fd5b505050505b5b5b5050600160098190555080601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000af1565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071b57607f821691505b602082108103620007315762000730620006d3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200079b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200075c565b620007a786836200075c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007f4620007ee620007e884620007bf565b620007c9565b620007bf565b9050919050565b6000819050919050565b6200081083620007d3565b620008286200081f82620007fb565b84845462000769565b825550505050565b600090565b6200083f62000830565b6200084c81848462000805565b505050565b5b8181101562000874576200086860008262000835565b60018101905062000852565b5050565b601f821115620008c3576200088d8162000737565b62000898846200074c565b81016020851015620008a8578190505b620008c0620008b7856200074c565b83018262000851565b50505b505050565b600082821c905092915050565b6000620008e860001984600802620008c8565b1980831691505092915050565b6000620009038383620008d5565b9150826002028217905092915050565b6200091e8262000699565b67ffffffffffffffff8111156200093a5762000939620006a4565b5b62000946825462000702565b6200095382828562000878565b600060209050601f8311600181146200098b576000841562000976578287015190505b620009828582620008f5565b865550620009f2565b601f1984166200099b8662000737565b60005b82811015620009c5578489015182556001820191506020850194506020810190506200099e565b86831015620009e55784890151620009e1601f891682620008d5565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a2c82620009ff565b9050919050565b62000a3e8162000a1f565b811462000a4a57600080fd5b50565b60008151905062000a5e8162000a33565b92915050565b60006020828403121562000a7d5762000a7c620009fa565b5b600062000a8d8482850162000a4d565b91505092915050565b62000aa18162000a1f565b82525050565b600060408201905062000abe600083018562000a96565b62000acd602083018462000a96565b9392505050565b600060208201905062000aeb600083018462000a96565b92915050565b614afd8062000b016000396000f3fe6080604052600436106103765760003560e01c80636caede3d116101d1578063b767a09811610102578063d5abeb01116100a0578063e985e9c51161006f578063e985e9c514610c37578063f2fde38b14610c74578063f4010ea614610c9d578063fa1560bb14610cc857610376565b8063d5abeb0114610b8d578063d6b5e5af14610bb8578063d7c770d714610be3578063e0a8085314610c0e57610376565b8063bf8c6f09116100dc578063bf8c6f0914610ad3578063bfa457bc14610afc578063c1fad42c14610b25578063c87b56dd14610b5057610376565b8063b767a09814610a72578063b88d4fde14610a9b578063ba41b0c614610ab757610376565b80638da5cb5b1161016f578063a22cb46511610149578063a22cb465146109cc578063a45ba8e7146109f5578063a54ef38a14610a20578063aaa2c42814610a4957610376565b80638da5cb5b1461094d57806395d89b41146109785780639ee97166146109a357610376565b8063715018a6116101ab578063715018a6146108b95780637b61c320146108d05780637cb64759146108fb5780637ec4a6591461092457610376565b80636caede3d146108285780636f8b44b01461085357806370a082311461087c57610376565b80632eb4a7ab116102ab57806351ecc9b8116102495780635c975abb116102235780635c975abb1461076a57806362b99ad4146107955780636352211e146107c05780636c02a931146107fd57610376565b806351ecc9b8146106eb5780635503a0e8146107165780635a75ece11461074157610376565b806342842e0e1161028557806342842e0e146106505780634519e4071461066c5780634fdd43cb1461069757806351830227146106c057610376565b80632eb4a7ab146105e35780633ccfd60b1461060e57806341f434341461062557610376565b8063144fa6d71161031857806318160ddd116102f257806318160ddd1461054a57806323b872dd1461057557806324a8fb7014610591578063271b2fcc146105ba57610376565b8063144fa6d7146104cf57806316ba10e0146104f857806316c38b3c1461052157610376565b8063081812fc11610354578063081812fc1461040e578063089327de1461044b578063095ea7b3146104765780631237e5e81461049257610376565b806301ffc9a71461037b5780630435e2f9146103b857806306fdde03146103e3575b600080fd5b34801561038757600080fd5b506103a2600480360381019061039d919061357c565b610cf1565b6040516103af91906135c4565b60405180910390f35b3480156103c457600080fd5b506103cd610d83565b6040516103da91906135f8565b60405180910390f35b3480156103ef57600080fd5b506103f8610d89565b60405161040591906136a3565b60405180910390f35b34801561041a57600080fd5b50610435600480360381019061043091906136f1565b610e1b565b604051610442919061375f565b60405180910390f35b34801561045757600080fd5b50610460610e9a565b60405161046d91906137d9565b60405180910390f35b610490600480360381019061048b9190613820565b610ec0565b005b34801561049e57600080fd5b506104b960048036038101906104b49190613860565b610ed9565b6040516104c691906135c4565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613860565b610ef9565b005b34801561050457600080fd5b5061051f600480360381019061051a91906139c2565b610f45565b005b34801561052d57600080fd5b5061054860048036038101906105439190613a37565b610f60565b005b34801561055657600080fd5b5061055f610f85565b60405161056c91906135f8565b60405180910390f35b61058f600480360381019061058a9190613a64565b610f9c565b005b34801561059d57600080fd5b506105b860048036038101906105b391906136f1565b610feb565b005b3480156105c657600080fd5b506105e160048036038101906105dc91906136f1565b610ffd565b005b3480156105ef57600080fd5b506105f8611030565b6040516106059190613ad0565b60405180910390f35b34801561061a57600080fd5b50610623611036565b005b34801561063157600080fd5b5061063a6110ce565b6040516106479190613b0c565b60405180910390f35b61066a60048036038101906106659190613a64565b6110e0565b005b34801561067857600080fd5b5061068161112f565b60405161068e91906135f8565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b991906139c2565b611135565b005b3480156106cc57600080fd5b506106d5611150565b6040516106e291906135c4565b60405180910390f35b3480156106f757600080fd5b50610700611163565b60405161070d91906135f8565b60405180910390f35b34801561072257600080fd5b5061072b611169565b60405161073891906136a3565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906136f1565b6111f7565b005b34801561077657600080fd5b5061077f611209565b60405161078c91906135c4565b60405180910390f35b3480156107a157600080fd5b506107aa61121c565b6040516107b791906136a3565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e291906136f1565b6112aa565b6040516107f4919061375f565b60405180910390f35b34801561080957600080fd5b506108126112bc565b60405161081f91906136a3565b60405180910390f35b34801561083457600080fd5b5061083d61134a565b60405161084a91906135c4565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906136f1565b61135d565b005b34801561088857600080fd5b506108a3600480360381019061089e9190613860565b61136f565b6040516108b091906135f8565b60405180910390f35b3480156108c557600080fd5b506108ce611427565b005b3480156108dc57600080fd5b506108e561143b565b6040516108f291906136a3565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d9190613b53565b6114c9565b005b34801561093057600080fd5b5061094b600480360381019061094691906139c2565b6114db565b005b34801561095957600080fd5b506109626114f6565b60405161096f919061375f565b60405180910390f35b34801561098457600080fd5b5061098d611520565b60405161099a91906136a3565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c59190613be0565b6115b2565b005b3480156109d857600080fd5b506109f360048036038101906109ee9190613c40565b611a87565b005b348015610a0157600080fd5b50610a0a611aa0565b604051610a1791906136a3565b60405180910390f35b348015610a2c57600080fd5b50610a476004803603810190610a4291906136f1565b611b2e565b005b348015610a5557600080fd5b50610a706004803603810190610a6b91906136f1565b611b40565b005b348015610a7e57600080fd5b50610a996004803603810190610a949190613a37565b611b52565b005b610ab56004803603810190610ab09190613d21565b611b77565b005b610ad16004803603810190610acc9190613be0565b611bc8565b005b348015610adf57600080fd5b50610afa6004803603810190610af591906136f1565b611f50565b005b348015610b0857600080fd5b50610b236004803603810190610b1e9190613da4565b611f62565b005b348015610b3157600080fd5b50610b3a611fcf565b604051610b4791906135f8565b60405180910390f35b348015610b5c57600080fd5b50610b776004803603810190610b7291906136f1565b611fd5565b604051610b8491906136a3565b60405180910390f35b348015610b9957600080fd5b50610ba261212d565b604051610baf91906135f8565b60405180910390f35b348015610bc457600080fd5b50610bcd612133565b604051610bda91906135f8565b60405180910390f35b348015610bef57600080fd5b50610bf8612139565b604051610c0591906135f8565b60405180910390f35b348015610c1a57600080fd5b50610c356004803603810190610c309190613a37565b61213f565b005b348015610c4357600080fd5b50610c5e6004803603810190610c599190613de4565b612164565b604051610c6b91906135c4565b60405180910390f35b348015610c8057600080fd5b50610c9b6004803603810190610c969190613860565b6121f8565b005b348015610ca957600080fd5b50610cb261227b565b604051610cbf91906135f8565b60405180910390f35b348015610cd457600080fd5b50610cef6004803603810190610cea91906136f1565b612281565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d4c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d7c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60185481565b606060028054610d9890613e53565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc490613e53565b8015610e115780601f10610de657610100808354040283529160200191610e11565b820191906000526020600020905b815481529060010190602001808311610df457829003601f168201915b5050505050905090565b6000610e2682612293565b610e5c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b81610eca816122f2565b610ed483836123ef565b505050565b60116020528060005260406000206000915054906101000a900460ff1681565b610f01612533565b80601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610f4d612533565b8060149081610f5c9190614026565b5050565b610f68612533565b80601260006101000a81548160ff02191690831515021790555050565b6000610f8f6125b1565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fda57610fd9336122f2565b5b610fe58484846125ba565b50505050565b610ff3612533565b8060188190555050565b611005612533565b61100d610f85565b600c5461101a9190614127565b81111561102657600080fd5b80600d8190555050565b60105481565b61103e612533565b6110466128dc565b60006110506114f6565b73ffffffffffffffffffffffffffffffffffffffff16476040516110739061418c565b60006040518083038185875af1925050503d80600081146110b0576040519150601f19603f3d011682016040523d82523d6000602084013e6110b5565b606091505b50509050806110c357600080fd5b506110cc61292b565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461111e5761111d336122f2565b5b611129848484612935565b50505050565b60175481565b61113d612533565b806015908161114c9190614026565b5050565b601260029054906101000a900460ff1681565b60165481565b6014805461117690613e53565b80601f01602080910402602001604051908101604052809291908181526020018280546111a290613e53565b80156111ef5780601f106111c4576101008083540402835291602001916111ef565b820191906000526020600020905b8154815290600101906020018083116111d257829003601f168201915b505050505081565b6111ff612533565b80600f8190555050565b601260009054906101000a900460ff1681565b6013805461122990613e53565b80601f016020809104026020016040519081016040528092919081815260200182805461125590613e53565b80156112a25780601f10611277576101008083540402835291602001916112a2565b820191906000526020600020905b81548152906001019060200180831161128557829003601f168201915b505050505081565b60006112b582612955565b9050919050565b600a80546112c990613e53565b80601f01602080910402602001604051908101604052809291908181526020018280546112f590613e53565b80156113425780601f1061131757610100808354040283529160200191611342565b820191906000526020600020905b81548152906001019060200180831161132557829003601f168201915b505050505081565b601260019054906101000a900460ff1681565b611365612533565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113d6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61142f612533565b6114396000612a21565b565b600b805461144890613e53565b80601f016020809104026020016040519081016040528092919081815260200182805461147490613e53565b80156114c15780601f10611496576101008083540402835291602001916114c1565b820191906000526020600020905b8154815290600101906020018083116114a457829003601f168201915b505050505081565b6114d1612533565b8060108190555050565b6114e3612533565b80601390816114f29190614026565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461152f90613e53565b80601f016020809104026020016040519081016040528092919081815260200182805461155b90613e53565b80156115a85780601f1061157d576101008083540402835291602001916115a8565b820191906000526020600020905b81548152906001019060200180831161158b57829003601f168201915b5050505050905090565b60011515601260019054906101000a900460ff161515036116df5760006115d7612ae7565b6040516020016115e791906141e9565b60405160208183030381529060405280519060200120905061164d838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483612aef565b61168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168390614250565b60405180910390fd5b60008411801561169e5750600f548411155b6116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d4906142bc565b60405180910390fd5b505b601260009054906101000a900460ff161561172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172690614328565b60405180910390fd5b6000831180156117415750600e548311155b611780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611777906142bc565b60405180910390fd5b600d54600c546117909190614127565b83611799610f85565b6117a39190614348565b11156117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db906143c8565b60405180910390fd5b601160006117f0612ae7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90614434565b60405180910390fd5b61188183612b06565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b81526004016118de929190614454565b602060405180830381865afa1580156118fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191f9190614492565b1015611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119579061450b565b60405180910390fd5b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd336119a76114f6565b6119b087612b06565b6040518463ffffffff1660e01b81526004016119ce9392919061452b565b6020604051808303816000875af11580156119ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a119190614577565b50600160116000611a20612ae7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a82611a7c612ae7565b84612b48565b505050565b81611a91816122f2565b611a9b8383612b66565b505050565b60158054611aad90613e53565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad990613e53565b8015611b265780601f10611afb57610100808354040283529160200191611b26565b820191906000526020600020905b815481529060010190602001808311611b0957829003601f168201915b505050505081565b611b36612533565b80600e8190555050565b611b48612533565b8060168190555050565b611b5a612533565b80601260016101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611bb557611bb4336122f2565b5b611bc185858585612c71565b5050505050565b82611bd281612ce4565b341015611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b906145f0565b60405180910390fd5b60011515601260019054906101000a900460ff16151503611d41576000611c39612ae7565b604051602001611c4991906141e9565b604051602081830303815290604052805190602001209050611caf848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483612aef565b611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce590614250565b60405180910390fd5b600085118015611d005750600f548511155b611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d36906142bc565b60405180910390fd5b505b601260009054906101000a900460ff1615611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890614328565b60405180910390fd5b600084118015611da35750600e548411155b611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd9906142bc565b60405180910390fd5b600d54600c54611df29190614127565b84611dfb610f85565b611e059190614348565b1115611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d906143c8565b60405180910390fd5b60116000611e52612ae7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed190614434565b60405180910390fd5b600160116000611ee8612ae7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f4a611f44612ae7565b85612b48565b50505050565b611f58612533565b8060198190555050565b611f6a612533565b600c5482611f76610f85565b611f809190614348565b1115611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb8906143c8565b60405180910390fd5b611fcb8183612b48565b5050565b600d5481565b6060611fe082612293565b61201f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201690614682565b60405180910390fd5b60001515601260029054906101000a900460ff161515036120cc576015805461204790613e53565b80601f016020809104026020016040519081016040528092919081815260200182805461207390613e53565b80156120c05780601f10612095576101008083540402835291602001916120c0565b820191906000526020600020905b8154815290600101906020018083116120a357829003601f168201915b50505050509050612128565b60006120d6612d32565b905060008151116120f65760405180602001604052806000815250612124565b8061210084612dc4565b601460405160200161211493929190614761565b6040516020818303038152906040525b9150505b919050565b600c5481565b600f5481565b60195481565b612147612533565b80601260026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612200612533565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361226f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226690614804565b60405180910390fd5b61227881612a21565b50565b600e5481565b612289612533565b8060178190555050565b60008161229e6125b1565b111580156122ad575060005482105b80156122eb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156123ec576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401612369929190614454565b602060405180830381865afa158015612386573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123aa9190614577565b6123eb57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016123e2919061375f565b60405180910390fd5b5b50565b60006123fa826112aa565b90508073ffffffffffffffffffffffffffffffffffffffff1661241b612e92565b73ffffffffffffffffffffffffffffffffffffffff161461247e5761244781612442612e92565b612164565b61247d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61253b612ae7565b73ffffffffffffffffffffffffffffffffffffffff166125596114f6565b73ffffffffffffffffffffffffffffffffffffffff16146125af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a690614870565b60405180910390fd5b565b60006001905090565b60006125c582612955565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461262c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061263884612e9a565b9150915061264e8187612649612e92565b612ec1565b61269a576126638661265e612e92565b612164565b612699576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612700576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61270d8686866001612f05565b801561271857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506127e6856127c2888887612f0b565b7c020000000000000000000000000000000000000000000000000000000017612f33565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361286c576000600185019050600060046000838152602001908152602001600020540361286a576000548114612869578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128d48686866001612f5e565b505050505050565b600260095403612921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612918906148dc565b60405180910390fd5b6002600981905550565b6001600981905550565b61295083838360405180602001604052806000815250611b77565b505050565b600080829050806129646125b1565b116129ea576000548110156129e95760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036129e7575b600081036129dd5760046000836001900393508381526020019081526020016000205490506129b3565b8092505050612a1c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600082612afc8584612f64565b1490509392505050565b6000601260019054906101000a900460ff1615612b325781601754612b2b91906148fc565b9050612b43565b81601954612b4091906148fc565b90505b919050565b612b62828260405180602001604052806000815250612fba565b5050565b8060076000612b73612e92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612c20612e92565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c6591906135c4565b60405180910390a35050565b612c7c848484610f9c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612cde57612ca784848484613057565b612cdd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000601260019054906101000a900460ff1615612d1c57600182612d089190614127565b601654612d1591906148fc565b9050612d2d565b81601854612d2a91906148fc565b90505b919050565b606060138054612d4190613e53565b80601f0160208091040260200160405190810160405280929190818152602001828054612d6d90613e53565b8015612dba5780601f10612d8f57610100808354040283529160200191612dba565b820191906000526020600020905b815481529060010190602001808311612d9d57829003601f168201915b5050505050905090565b606060006001612dd3846131a7565b01905060008167ffffffffffffffff811115612df257612df1613897565b5b6040519080825280601f01601f191660200182016040528015612e245781602001600182028036833780820191505090505b509050600082602001820190505b600115612e87578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612e7b57612e7a61493e565b5b04945060008503612e32575b819350505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612f228686846132fa565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008082905060005b8451811015612faf57612f9a82868381518110612f8d57612f8c61496d565b5b6020026020010151613303565b91508080612fa79061499c565b915050612f6d565b508091505092915050565b612fc4838361332e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461305257600080549050600083820390505b6130046000868380600101945086613057565b61303a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612ff157816000541461304f57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261307d612e92565b8786866040518563ffffffff1660e01b815260040161309f9493929190614a39565b6020604051808303816000875af19250505080156130db57506040513d601f19601f820116820180604052508101906130d89190614a9a565b60015b613154573d806000811461310b576040519150601f19603f3d011682016040523d82523d6000602084013e613110565b606091505b50600081510361314c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613205577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816131fb576131fa61493e565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613242576d04ee2d6d415b85acef810000000083816132385761323761493e565b5b0492506020810190505b662386f26fc10000831061327157662386f26fc1000083816132675761326661493e565b5b0492506010810190505b6305f5e100831061329a576305f5e10083816132905761328f61493e565b5b0492506008810190505b61271083106132bf5761271083816132b5576132b461493e565b5b0492506004810190505b606483106132e257606483816132d8576132d761493e565b5b0492506002810190505b600a83106132f1576001810190505b80915050919050565b60009392505050565b600081831061331b5761331682846134e9565b613326565b61332583836134e9565b5b905092915050565b6000805490506000820361336e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61337b6000848385612f05565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506133f2836133e36000866000612f0b565b6133ec85613500565b17612f33565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461349357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613458565b50600082036134ce576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506134e46000848385612f5e565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61355981613524565b811461356457600080fd5b50565b60008135905061357681613550565b92915050565b6000602082840312156135925761359161351a565b5b60006135a084828501613567565b91505092915050565b60008115159050919050565b6135be816135a9565b82525050565b60006020820190506135d960008301846135b5565b92915050565b6000819050919050565b6135f2816135df565b82525050565b600060208201905061360d60008301846135e9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561364d578082015181840152602081019050613632565b60008484015250505050565b6000601f19601f8301169050919050565b600061367582613613565b61367f818561361e565b935061368f81856020860161362f565b61369881613659565b840191505092915050565b600060208201905081810360008301526136bd818461366a565b905092915050565b6136ce816135df565b81146136d957600080fd5b50565b6000813590506136eb816136c5565b92915050565b6000602082840312156137075761370661351a565b5b6000613715848285016136dc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137498261371e565b9050919050565b6137598161373e565b82525050565b60006020820190506137746000830184613750565b92915050565b6000819050919050565b600061379f61379a6137958461371e565b61377a565b61371e565b9050919050565b60006137b182613784565b9050919050565b60006137c3826137a6565b9050919050565b6137d3816137b8565b82525050565b60006020820190506137ee60008301846137ca565b92915050565b6137fd8161373e565b811461380857600080fd5b50565b60008135905061381a816137f4565b92915050565b600080604083850312156138375761383661351a565b5b60006138458582860161380b565b9250506020613856858286016136dc565b9150509250929050565b6000602082840312156138765761387561351a565b5b60006138848482850161380b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138cf82613659565b810181811067ffffffffffffffff821117156138ee576138ed613897565b5b80604052505050565b6000613901613510565b905061390d82826138c6565b919050565b600067ffffffffffffffff82111561392d5761392c613897565b5b61393682613659565b9050602081019050919050565b82818337600083830152505050565b600061396561396084613912565b6138f7565b90508281526020810184848401111561398157613980613892565b5b61398c848285613943565b509392505050565b600082601f8301126139a9576139a861388d565b5b81356139b9848260208601613952565b91505092915050565b6000602082840312156139d8576139d761351a565b5b600082013567ffffffffffffffff8111156139f6576139f561351f565b5b613a0284828501613994565b91505092915050565b613a14816135a9565b8114613a1f57600080fd5b50565b600081359050613a3181613a0b565b92915050565b600060208284031215613a4d57613a4c61351a565b5b6000613a5b84828501613a22565b91505092915050565b600080600060608486031215613a7d57613a7c61351a565b5b6000613a8b8682870161380b565b9350506020613a9c8682870161380b565b9250506040613aad868287016136dc565b9150509250925092565b6000819050919050565b613aca81613ab7565b82525050565b6000602082019050613ae56000830184613ac1565b92915050565b6000613af6826137a6565b9050919050565b613b0681613aeb565b82525050565b6000602082019050613b216000830184613afd565b92915050565b613b3081613ab7565b8114613b3b57600080fd5b50565b600081359050613b4d81613b27565b92915050565b600060208284031215613b6957613b6861351a565b5b6000613b7784828501613b3e565b91505092915050565b600080fd5b600080fd5b60008083601f840112613ba057613b9f61388d565b5b8235905067ffffffffffffffff811115613bbd57613bbc613b80565b5b602083019150836020820283011115613bd957613bd8613b85565b5b9250929050565b600080600060408486031215613bf957613bf861351a565b5b6000613c07868287016136dc565b935050602084013567ffffffffffffffff811115613c2857613c2761351f565b5b613c3486828701613b8a565b92509250509250925092565b60008060408385031215613c5757613c5661351a565b5b6000613c658582860161380b565b9250506020613c7685828601613a22565b9150509250929050565b600067ffffffffffffffff821115613c9b57613c9a613897565b5b613ca482613659565b9050602081019050919050565b6000613cc4613cbf84613c80565b6138f7565b905082815260208101848484011115613ce057613cdf613892565b5b613ceb848285613943565b509392505050565b600082601f830112613d0857613d0761388d565b5b8135613d18848260208601613cb1565b91505092915050565b60008060008060808587031215613d3b57613d3a61351a565b5b6000613d498782880161380b565b9450506020613d5a8782880161380b565b9350506040613d6b878288016136dc565b925050606085013567ffffffffffffffff811115613d8c57613d8b61351f565b5b613d9887828801613cf3565b91505092959194509250565b60008060408385031215613dbb57613dba61351a565b5b6000613dc9858286016136dc565b9250506020613dda8582860161380b565b9150509250929050565b60008060408385031215613dfb57613dfa61351a565b5b6000613e098582860161380b565b9250506020613e1a8582860161380b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e6b57607f821691505b602082108103613e7e57613e7d613e24565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613ee67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613ea9565b613ef08683613ea9565b95508019841693508086168417925050509392505050565b6000613f23613f1e613f19846135df565b61377a565b6135df565b9050919050565b6000819050919050565b613f3d83613f08565b613f51613f4982613f2a565b848454613eb6565b825550505050565b600090565b613f66613f59565b613f71818484613f34565b505050565b5b81811015613f9557613f8a600082613f5e565b600181019050613f77565b5050565b601f821115613fda57613fab81613e84565b613fb484613e99565b81016020851015613fc3578190505b613fd7613fcf85613e99565b830182613f76565b50505b505050565b600082821c905092915050565b6000613ffd60001984600802613fdf565b1980831691505092915050565b60006140168383613fec565b9150826002028217905092915050565b61402f82613613565b67ffffffffffffffff81111561404857614047613897565b5b6140528254613e53565b61405d828285613f99565b600060209050601f831160018114614090576000841561407e578287015190505b614088858261400a565b8655506140f0565b601f19841661409e86613e84565b60005b828110156140c6578489015182556001820191506020850194506020810190506140a1565b868310156140e357848901516140df601f891682613fec565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614132826135df565b915061413d836135df565b9250828203905081811115614155576141546140f8565b5b92915050565b600081905092915050565b50565b600061417660008361415b565b915061418182614166565b600082019050919050565b600061419782614169565b9150819050919050565b60008160601b9050919050565b60006141b9826141a1565b9050919050565b60006141cb826141ae565b9050919050565b6141e36141de8261373e565b6141c0565b82525050565b60006141f582846141d2565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b600061423a600e8361361e565b915061424582614204565b602082019050919050565b600060208201905081810360008301526142698161422d565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006142a660148361361e565b91506142b182614270565b602082019050919050565b600060208201905081810360008301526142d581614299565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061431260178361361e565b915061431d826142dc565b602082019050919050565b6000602082019050818103600083015261434181614305565b9050919050565b6000614353826135df565b915061435e836135df565b9250828201905080821115614376576143756140f8565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006143b260148361361e565b91506143bd8261437c565b602082019050919050565b600060208201905081810360008301526143e1816143a5565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b600061441e60188361361e565b9150614429826143e8565b602082019050919050565b6000602082019050818103600083015261444d81614411565b9050919050565b60006040820190506144696000830185613750565b6144766020830184613750565b9392505050565b60008151905061448c816136c5565b92915050565b6000602082840312156144a8576144a761351a565b5b60006144b68482850161447d565b91505092915050565b7f4e6f7420656e6f756768206f6620455243323020746f6b656e00000000000000600082015250565b60006144f560198361361e565b9150614500826144bf565b602082019050919050565b60006020820190508181036000830152614524816144e8565b9050919050565b60006060820190506145406000830186613750565b61454d6020830185613750565b61455a60408301846135e9565b949350505050565b60008151905061457181613a0b565b92915050565b60006020828403121561458d5761458c61351a565b5b600061459b84828501614562565b91505092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006145da60138361361e565b91506145e5826145a4565b602082019050919050565b60006020820190508181036000830152614609816145cd565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061466c602f8361361e565b915061467782614610565b604082019050919050565b6000602082019050818103600083015261469b8161465f565b9050919050565b600081905092915050565b60006146b882613613565b6146c281856146a2565b93506146d281856020860161362f565b80840191505092915050565b600081546146eb81613e53565b6146f581866146a2565b94506001821660008114614710576001811461472557614758565b60ff1983168652811515820286019350614758565b61472e85613e84565b60005b8381101561475057815481890152600182019150602081019050614731565b838801955050505b50505092915050565b600061476d82866146ad565b915061477982856146ad565b915061478582846146de565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147ee60268361361e565b91506147f982614792565b604082019050919050565b6000602082019050818103600083015261481d816147e1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061485a60208361361e565b915061486582614824565b602082019050919050565b600060208201905081810360008301526148898161484d565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006148c6601f8361361e565b91506148d182614890565b602082019050919050565b600060208201905081810360008301526148f5816148b9565b9050919050565b6000614907826135df565b9150614912836135df565b9250828202614920816135df565b91508282048414831517614937576149366140f8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006149a7826135df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036149d9576149d86140f8565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000614a0b826149e4565b614a1581856149ef565b9350614a2581856020860161362f565b614a2e81613659565b840191505092915050565b6000608082019050614a4e6000830187613750565b614a5b6020830186613750565b614a6860408301856135e9565b8181036060830152614a7a8184614a00565b905095945050505050565b600081519050614a9481613550565b92915050565b600060208284031215614ab057614aaf61351a565b5b6000614abe84828501614a85565b9150509291505056fea2646970667358221220ffb4c244f71f553b0d311986cd71c705cbdabf0a07e87afc59ec34d876119a8464736f6c634300081100330000000000000000000000005283d291dbcf85356a21ba090e6db59121208b44

Deployed Bytecode

0x6080604052600436106103765760003560e01c80636caede3d116101d1578063b767a09811610102578063d5abeb01116100a0578063e985e9c51161006f578063e985e9c514610c37578063f2fde38b14610c74578063f4010ea614610c9d578063fa1560bb14610cc857610376565b8063d5abeb0114610b8d578063d6b5e5af14610bb8578063d7c770d714610be3578063e0a8085314610c0e57610376565b8063bf8c6f09116100dc578063bf8c6f0914610ad3578063bfa457bc14610afc578063c1fad42c14610b25578063c87b56dd14610b5057610376565b8063b767a09814610a72578063b88d4fde14610a9b578063ba41b0c614610ab757610376565b80638da5cb5b1161016f578063a22cb46511610149578063a22cb465146109cc578063a45ba8e7146109f5578063a54ef38a14610a20578063aaa2c42814610a4957610376565b80638da5cb5b1461094d57806395d89b41146109785780639ee97166146109a357610376565b8063715018a6116101ab578063715018a6146108b95780637b61c320146108d05780637cb64759146108fb5780637ec4a6591461092457610376565b80636caede3d146108285780636f8b44b01461085357806370a082311461087c57610376565b80632eb4a7ab116102ab57806351ecc9b8116102495780635c975abb116102235780635c975abb1461076a57806362b99ad4146107955780636352211e146107c05780636c02a931146107fd57610376565b806351ecc9b8146106eb5780635503a0e8146107165780635a75ece11461074157610376565b806342842e0e1161028557806342842e0e146106505780634519e4071461066c5780634fdd43cb1461069757806351830227146106c057610376565b80632eb4a7ab146105e35780633ccfd60b1461060e57806341f434341461062557610376565b8063144fa6d71161031857806318160ddd116102f257806318160ddd1461054a57806323b872dd1461057557806324a8fb7014610591578063271b2fcc146105ba57610376565b8063144fa6d7146104cf57806316ba10e0146104f857806316c38b3c1461052157610376565b8063081812fc11610354578063081812fc1461040e578063089327de1461044b578063095ea7b3146104765780631237e5e81461049257610376565b806301ffc9a71461037b5780630435e2f9146103b857806306fdde03146103e3575b600080fd5b34801561038757600080fd5b506103a2600480360381019061039d919061357c565b610cf1565b6040516103af91906135c4565b60405180910390f35b3480156103c457600080fd5b506103cd610d83565b6040516103da91906135f8565b60405180910390f35b3480156103ef57600080fd5b506103f8610d89565b60405161040591906136a3565b60405180910390f35b34801561041a57600080fd5b50610435600480360381019061043091906136f1565b610e1b565b604051610442919061375f565b60405180910390f35b34801561045757600080fd5b50610460610e9a565b60405161046d91906137d9565b60405180910390f35b610490600480360381019061048b9190613820565b610ec0565b005b34801561049e57600080fd5b506104b960048036038101906104b49190613860565b610ed9565b6040516104c691906135c4565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613860565b610ef9565b005b34801561050457600080fd5b5061051f600480360381019061051a91906139c2565b610f45565b005b34801561052d57600080fd5b5061054860048036038101906105439190613a37565b610f60565b005b34801561055657600080fd5b5061055f610f85565b60405161056c91906135f8565b60405180910390f35b61058f600480360381019061058a9190613a64565b610f9c565b005b34801561059d57600080fd5b506105b860048036038101906105b391906136f1565b610feb565b005b3480156105c657600080fd5b506105e160048036038101906105dc91906136f1565b610ffd565b005b3480156105ef57600080fd5b506105f8611030565b6040516106059190613ad0565b60405180910390f35b34801561061a57600080fd5b50610623611036565b005b34801561063157600080fd5b5061063a6110ce565b6040516106479190613b0c565b60405180910390f35b61066a60048036038101906106659190613a64565b6110e0565b005b34801561067857600080fd5b5061068161112f565b60405161068e91906135f8565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b991906139c2565b611135565b005b3480156106cc57600080fd5b506106d5611150565b6040516106e291906135c4565b60405180910390f35b3480156106f757600080fd5b50610700611163565b60405161070d91906135f8565b60405180910390f35b34801561072257600080fd5b5061072b611169565b60405161073891906136a3565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906136f1565b6111f7565b005b34801561077657600080fd5b5061077f611209565b60405161078c91906135c4565b60405180910390f35b3480156107a157600080fd5b506107aa61121c565b6040516107b791906136a3565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e291906136f1565b6112aa565b6040516107f4919061375f565b60405180910390f35b34801561080957600080fd5b506108126112bc565b60405161081f91906136a3565b60405180910390f35b34801561083457600080fd5b5061083d61134a565b60405161084a91906135c4565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906136f1565b61135d565b005b34801561088857600080fd5b506108a3600480360381019061089e9190613860565b61136f565b6040516108b091906135f8565b60405180910390f35b3480156108c557600080fd5b506108ce611427565b005b3480156108dc57600080fd5b506108e561143b565b6040516108f291906136a3565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d9190613b53565b6114c9565b005b34801561093057600080fd5b5061094b600480360381019061094691906139c2565b6114db565b005b34801561095957600080fd5b506109626114f6565b60405161096f919061375f565b60405180910390f35b34801561098457600080fd5b5061098d611520565b60405161099a91906136a3565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c59190613be0565b6115b2565b005b3480156109d857600080fd5b506109f360048036038101906109ee9190613c40565b611a87565b005b348015610a0157600080fd5b50610a0a611aa0565b604051610a1791906136a3565b60405180910390f35b348015610a2c57600080fd5b50610a476004803603810190610a4291906136f1565b611b2e565b005b348015610a5557600080fd5b50610a706004803603810190610a6b91906136f1565b611b40565b005b348015610a7e57600080fd5b50610a996004803603810190610a949190613a37565b611b52565b005b610ab56004803603810190610ab09190613d21565b611b77565b005b610ad16004803603810190610acc9190613be0565b611bc8565b005b348015610adf57600080fd5b50610afa6004803603810190610af591906136f1565b611f50565b005b348015610b0857600080fd5b50610b236004803603810190610b1e9190613da4565b611f62565b005b348015610b3157600080fd5b50610b3a611fcf565b604051610b4791906135f8565b60405180910390f35b348015610b5c57600080fd5b50610b776004803603810190610b7291906136f1565b611fd5565b604051610b8491906136a3565b60405180910390f35b348015610b9957600080fd5b50610ba261212d565b604051610baf91906135f8565b60405180910390f35b348015610bc457600080fd5b50610bcd612133565b604051610bda91906135f8565b60405180910390f35b348015610bef57600080fd5b50610bf8612139565b604051610c0591906135f8565b60405180910390f35b348015610c1a57600080fd5b50610c356004803603810190610c309190613a37565b61213f565b005b348015610c4357600080fd5b50610c5e6004803603810190610c599190613de4565b612164565b604051610c6b91906135c4565b60405180910390f35b348015610c8057600080fd5b50610c9b6004803603810190610c969190613860565b6121f8565b005b348015610ca957600080fd5b50610cb261227b565b604051610cbf91906135f8565b60405180910390f35b348015610cd457600080fd5b50610cef6004803603810190610cea91906136f1565b612281565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d4c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d7c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60185481565b606060028054610d9890613e53565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc490613e53565b8015610e115780601f10610de657610100808354040283529160200191610e11565b820191906000526020600020905b815481529060010190602001808311610df457829003601f168201915b5050505050905090565b6000610e2682612293565b610e5c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b81610eca816122f2565b610ed483836123ef565b505050565b60116020528060005260406000206000915054906101000a900460ff1681565b610f01612533565b80601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610f4d612533565b8060149081610f5c9190614026565b5050565b610f68612533565b80601260006101000a81548160ff02191690831515021790555050565b6000610f8f6125b1565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fda57610fd9336122f2565b5b610fe58484846125ba565b50505050565b610ff3612533565b8060188190555050565b611005612533565b61100d610f85565b600c5461101a9190614127565b81111561102657600080fd5b80600d8190555050565b60105481565b61103e612533565b6110466128dc565b60006110506114f6565b73ffffffffffffffffffffffffffffffffffffffff16476040516110739061418c565b60006040518083038185875af1925050503d80600081146110b0576040519150601f19603f3d011682016040523d82523d6000602084013e6110b5565b606091505b50509050806110c357600080fd5b506110cc61292b565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461111e5761111d336122f2565b5b611129848484612935565b50505050565b60175481565b61113d612533565b806015908161114c9190614026565b5050565b601260029054906101000a900460ff1681565b60165481565b6014805461117690613e53565b80601f01602080910402602001604051908101604052809291908181526020018280546111a290613e53565b80156111ef5780601f106111c4576101008083540402835291602001916111ef565b820191906000526020600020905b8154815290600101906020018083116111d257829003601f168201915b505050505081565b6111ff612533565b80600f8190555050565b601260009054906101000a900460ff1681565b6013805461122990613e53565b80601f016020809104026020016040519081016040528092919081815260200182805461125590613e53565b80156112a25780601f10611277576101008083540402835291602001916112a2565b820191906000526020600020905b81548152906001019060200180831161128557829003601f168201915b505050505081565b60006112b582612955565b9050919050565b600a80546112c990613e53565b80601f01602080910402602001604051908101604052809291908181526020018280546112f590613e53565b80156113425780601f1061131757610100808354040283529160200191611342565b820191906000526020600020905b81548152906001019060200180831161132557829003601f168201915b505050505081565b601260019054906101000a900460ff1681565b611365612533565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113d6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61142f612533565b6114396000612a21565b565b600b805461144890613e53565b80601f016020809104026020016040519081016040528092919081815260200182805461147490613e53565b80156114c15780601f10611496576101008083540402835291602001916114c1565b820191906000526020600020905b8154815290600101906020018083116114a457829003601f168201915b505050505081565b6114d1612533565b8060108190555050565b6114e3612533565b80601390816114f29190614026565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461152f90613e53565b80601f016020809104026020016040519081016040528092919081815260200182805461155b90613e53565b80156115a85780601f1061157d576101008083540402835291602001916115a8565b820191906000526020600020905b81548152906001019060200180831161158b57829003601f168201915b5050505050905090565b60011515601260019054906101000a900460ff161515036116df5760006115d7612ae7565b6040516020016115e791906141e9565b60405160208183030381529060405280519060200120905061164d838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483612aef565b61168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168390614250565b60405180910390fd5b60008411801561169e5750600f548411155b6116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d4906142bc565b60405180910390fd5b505b601260009054906101000a900460ff161561172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172690614328565b60405180910390fd5b6000831180156117415750600e548311155b611780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611777906142bc565b60405180910390fd5b600d54600c546117909190614127565b83611799610f85565b6117a39190614348565b11156117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db906143c8565b60405180910390fd5b601160006117f0612ae7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90614434565b60405180910390fd5b61188183612b06565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b81526004016118de929190614454565b602060405180830381865afa1580156118fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191f9190614492565b1015611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119579061450b565b60405180910390fd5b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd336119a76114f6565b6119b087612b06565b6040518463ffffffff1660e01b81526004016119ce9392919061452b565b6020604051808303816000875af11580156119ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a119190614577565b50600160116000611a20612ae7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a82611a7c612ae7565b84612b48565b505050565b81611a91816122f2565b611a9b8383612b66565b505050565b60158054611aad90613e53565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad990613e53565b8015611b265780601f10611afb57610100808354040283529160200191611b26565b820191906000526020600020905b815481529060010190602001808311611b0957829003601f168201915b505050505081565b611b36612533565b80600e8190555050565b611b48612533565b8060168190555050565b611b5a612533565b80601260016101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611bb557611bb4336122f2565b5b611bc185858585612c71565b5050505050565b82611bd281612ce4565b341015611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b906145f0565b60405180910390fd5b60011515601260019054906101000a900460ff16151503611d41576000611c39612ae7565b604051602001611c4991906141e9565b604051602081830303815290604052805190602001209050611caf848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483612aef565b611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce590614250565b60405180910390fd5b600085118015611d005750600f548511155b611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d36906142bc565b60405180910390fd5b505b601260009054906101000a900460ff1615611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890614328565b60405180910390fd5b600084118015611da35750600e548411155b611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd9906142bc565b60405180910390fd5b600d54600c54611df29190614127565b84611dfb610f85565b611e059190614348565b1115611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d906143c8565b60405180910390fd5b60116000611e52612ae7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed190614434565b60405180910390fd5b600160116000611ee8612ae7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f4a611f44612ae7565b85612b48565b50505050565b611f58612533565b8060198190555050565b611f6a612533565b600c5482611f76610f85565b611f809190614348565b1115611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb8906143c8565b60405180910390fd5b611fcb8183612b48565b5050565b600d5481565b6060611fe082612293565b61201f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201690614682565b60405180910390fd5b60001515601260029054906101000a900460ff161515036120cc576015805461204790613e53565b80601f016020809104026020016040519081016040528092919081815260200182805461207390613e53565b80156120c05780601f10612095576101008083540402835291602001916120c0565b820191906000526020600020905b8154815290600101906020018083116120a357829003601f168201915b50505050509050612128565b60006120d6612d32565b905060008151116120f65760405180602001604052806000815250612124565b8061210084612dc4565b601460405160200161211493929190614761565b6040516020818303038152906040525b9150505b919050565b600c5481565b600f5481565b60195481565b612147612533565b80601260026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612200612533565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361226f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226690614804565b60405180910390fd5b61227881612a21565b50565b600e5481565b612289612533565b8060178190555050565b60008161229e6125b1565b111580156122ad575060005482105b80156122eb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156123ec576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401612369929190614454565b602060405180830381865afa158015612386573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123aa9190614577565b6123eb57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016123e2919061375f565b60405180910390fd5b5b50565b60006123fa826112aa565b90508073ffffffffffffffffffffffffffffffffffffffff1661241b612e92565b73ffffffffffffffffffffffffffffffffffffffff161461247e5761244781612442612e92565b612164565b61247d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61253b612ae7565b73ffffffffffffffffffffffffffffffffffffffff166125596114f6565b73ffffffffffffffffffffffffffffffffffffffff16146125af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a690614870565b60405180910390fd5b565b60006001905090565b60006125c582612955565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461262c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061263884612e9a565b9150915061264e8187612649612e92565b612ec1565b61269a576126638661265e612e92565b612164565b612699576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612700576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61270d8686866001612f05565b801561271857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506127e6856127c2888887612f0b565b7c020000000000000000000000000000000000000000000000000000000017612f33565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361286c576000600185019050600060046000838152602001908152602001600020540361286a576000548114612869578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128d48686866001612f5e565b505050505050565b600260095403612921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612918906148dc565b60405180910390fd5b6002600981905550565b6001600981905550565b61295083838360405180602001604052806000815250611b77565b505050565b600080829050806129646125b1565b116129ea576000548110156129e95760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036129e7575b600081036129dd5760046000836001900393508381526020019081526020016000205490506129b3565b8092505050612a1c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600082612afc8584612f64565b1490509392505050565b6000601260019054906101000a900460ff1615612b325781601754612b2b91906148fc565b9050612b43565b81601954612b4091906148fc565b90505b919050565b612b62828260405180602001604052806000815250612fba565b5050565b8060076000612b73612e92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612c20612e92565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c6591906135c4565b60405180910390a35050565b612c7c848484610f9c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612cde57612ca784848484613057565b612cdd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000601260019054906101000a900460ff1615612d1c57600182612d089190614127565b601654612d1591906148fc565b9050612d2d565b81601854612d2a91906148fc565b90505b919050565b606060138054612d4190613e53565b80601f0160208091040260200160405190810160405280929190818152602001828054612d6d90613e53565b8015612dba5780601f10612d8f57610100808354040283529160200191612dba565b820191906000526020600020905b815481529060010190602001808311612d9d57829003601f168201915b5050505050905090565b606060006001612dd3846131a7565b01905060008167ffffffffffffffff811115612df257612df1613897565b5b6040519080825280601f01601f191660200182016040528015612e245781602001600182028036833780820191505090505b509050600082602001820190505b600115612e87578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612e7b57612e7a61493e565b5b04945060008503612e32575b819350505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612f228686846132fa565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008082905060005b8451811015612faf57612f9a82868381518110612f8d57612f8c61496d565b5b6020026020010151613303565b91508080612fa79061499c565b915050612f6d565b508091505092915050565b612fc4838361332e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461305257600080549050600083820390505b6130046000868380600101945086613057565b61303a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612ff157816000541461304f57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261307d612e92565b8786866040518563ffffffff1660e01b815260040161309f9493929190614a39565b6020604051808303816000875af19250505080156130db57506040513d601f19601f820116820180604052508101906130d89190614a9a565b60015b613154573d806000811461310b576040519150601f19603f3d011682016040523d82523d6000602084013e613110565b606091505b50600081510361314c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613205577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816131fb576131fa61493e565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613242576d04ee2d6d415b85acef810000000083816132385761323761493e565b5b0492506020810190505b662386f26fc10000831061327157662386f26fc1000083816132675761326661493e565b5b0492506010810190505b6305f5e100831061329a576305f5e10083816132905761328f61493e565b5b0492506008810190505b61271083106132bf5761271083816132b5576132b461493e565b5b0492506004810190505b606483106132e257606483816132d8576132d761493e565b5b0492506002810190505b600a83106132f1576001810190505b80915050919050565b60009392505050565b600081831061331b5761331682846134e9565b613326565b61332583836134e9565b5b905092915050565b6000805490506000820361336e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61337b6000848385612f05565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506133f2836133e36000866000612f0b565b6133ec85613500565b17612f33565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461349357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613458565b50600082036134ce576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506134e46000848385612f5e565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61355981613524565b811461356457600080fd5b50565b60008135905061357681613550565b92915050565b6000602082840312156135925761359161351a565b5b60006135a084828501613567565b91505092915050565b60008115159050919050565b6135be816135a9565b82525050565b60006020820190506135d960008301846135b5565b92915050565b6000819050919050565b6135f2816135df565b82525050565b600060208201905061360d60008301846135e9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561364d578082015181840152602081019050613632565b60008484015250505050565b6000601f19601f8301169050919050565b600061367582613613565b61367f818561361e565b935061368f81856020860161362f565b61369881613659565b840191505092915050565b600060208201905081810360008301526136bd818461366a565b905092915050565b6136ce816135df565b81146136d957600080fd5b50565b6000813590506136eb816136c5565b92915050565b6000602082840312156137075761370661351a565b5b6000613715848285016136dc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137498261371e565b9050919050565b6137598161373e565b82525050565b60006020820190506137746000830184613750565b92915050565b6000819050919050565b600061379f61379a6137958461371e565b61377a565b61371e565b9050919050565b60006137b182613784565b9050919050565b60006137c3826137a6565b9050919050565b6137d3816137b8565b82525050565b60006020820190506137ee60008301846137ca565b92915050565b6137fd8161373e565b811461380857600080fd5b50565b60008135905061381a816137f4565b92915050565b600080604083850312156138375761383661351a565b5b60006138458582860161380b565b9250506020613856858286016136dc565b9150509250929050565b6000602082840312156138765761387561351a565b5b60006138848482850161380b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138cf82613659565b810181811067ffffffffffffffff821117156138ee576138ed613897565b5b80604052505050565b6000613901613510565b905061390d82826138c6565b919050565b600067ffffffffffffffff82111561392d5761392c613897565b5b61393682613659565b9050602081019050919050565b82818337600083830152505050565b600061396561396084613912565b6138f7565b90508281526020810184848401111561398157613980613892565b5b61398c848285613943565b509392505050565b600082601f8301126139a9576139a861388d565b5b81356139b9848260208601613952565b91505092915050565b6000602082840312156139d8576139d761351a565b5b600082013567ffffffffffffffff8111156139f6576139f561351f565b5b613a0284828501613994565b91505092915050565b613a14816135a9565b8114613a1f57600080fd5b50565b600081359050613a3181613a0b565b92915050565b600060208284031215613a4d57613a4c61351a565b5b6000613a5b84828501613a22565b91505092915050565b600080600060608486031215613a7d57613a7c61351a565b5b6000613a8b8682870161380b565b9350506020613a9c8682870161380b565b9250506040613aad868287016136dc565b9150509250925092565b6000819050919050565b613aca81613ab7565b82525050565b6000602082019050613ae56000830184613ac1565b92915050565b6000613af6826137a6565b9050919050565b613b0681613aeb565b82525050565b6000602082019050613b216000830184613afd565b92915050565b613b3081613ab7565b8114613b3b57600080fd5b50565b600081359050613b4d81613b27565b92915050565b600060208284031215613b6957613b6861351a565b5b6000613b7784828501613b3e565b91505092915050565b600080fd5b600080fd5b60008083601f840112613ba057613b9f61388d565b5b8235905067ffffffffffffffff811115613bbd57613bbc613b80565b5b602083019150836020820283011115613bd957613bd8613b85565b5b9250929050565b600080600060408486031215613bf957613bf861351a565b5b6000613c07868287016136dc565b935050602084013567ffffffffffffffff811115613c2857613c2761351f565b5b613c3486828701613b8a565b92509250509250925092565b60008060408385031215613c5757613c5661351a565b5b6000613c658582860161380b565b9250506020613c7685828601613a22565b9150509250929050565b600067ffffffffffffffff821115613c9b57613c9a613897565b5b613ca482613659565b9050602081019050919050565b6000613cc4613cbf84613c80565b6138f7565b905082815260208101848484011115613ce057613cdf613892565b5b613ceb848285613943565b509392505050565b600082601f830112613d0857613d0761388d565b5b8135613d18848260208601613cb1565b91505092915050565b60008060008060808587031215613d3b57613d3a61351a565b5b6000613d498782880161380b565b9450506020613d5a8782880161380b565b9350506040613d6b878288016136dc565b925050606085013567ffffffffffffffff811115613d8c57613d8b61351f565b5b613d9887828801613cf3565b91505092959194509250565b60008060408385031215613dbb57613dba61351a565b5b6000613dc9858286016136dc565b9250506020613dda8582860161380b565b9150509250929050565b60008060408385031215613dfb57613dfa61351a565b5b6000613e098582860161380b565b9250506020613e1a8582860161380b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e6b57607f821691505b602082108103613e7e57613e7d613e24565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613ee67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613ea9565b613ef08683613ea9565b95508019841693508086168417925050509392505050565b6000613f23613f1e613f19846135df565b61377a565b6135df565b9050919050565b6000819050919050565b613f3d83613f08565b613f51613f4982613f2a565b848454613eb6565b825550505050565b600090565b613f66613f59565b613f71818484613f34565b505050565b5b81811015613f9557613f8a600082613f5e565b600181019050613f77565b5050565b601f821115613fda57613fab81613e84565b613fb484613e99565b81016020851015613fc3578190505b613fd7613fcf85613e99565b830182613f76565b50505b505050565b600082821c905092915050565b6000613ffd60001984600802613fdf565b1980831691505092915050565b60006140168383613fec565b9150826002028217905092915050565b61402f82613613565b67ffffffffffffffff81111561404857614047613897565b5b6140528254613e53565b61405d828285613f99565b600060209050601f831160018114614090576000841561407e578287015190505b614088858261400a565b8655506140f0565b601f19841661409e86613e84565b60005b828110156140c6578489015182556001820191506020850194506020810190506140a1565b868310156140e357848901516140df601f891682613fec565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614132826135df565b915061413d836135df565b9250828203905081811115614155576141546140f8565b5b92915050565b600081905092915050565b50565b600061417660008361415b565b915061418182614166565b600082019050919050565b600061419782614169565b9150819050919050565b60008160601b9050919050565b60006141b9826141a1565b9050919050565b60006141cb826141ae565b9050919050565b6141e36141de8261373e565b6141c0565b82525050565b60006141f582846141d2565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b600061423a600e8361361e565b915061424582614204565b602082019050919050565b600060208201905081810360008301526142698161422d565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006142a660148361361e565b91506142b182614270565b602082019050919050565b600060208201905081810360008301526142d581614299565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061431260178361361e565b915061431d826142dc565b602082019050919050565b6000602082019050818103600083015261434181614305565b9050919050565b6000614353826135df565b915061435e836135df565b9250828201905080821115614376576143756140f8565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006143b260148361361e565b91506143bd8261437c565b602082019050919050565b600060208201905081810360008301526143e1816143a5565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b600061441e60188361361e565b9150614429826143e8565b602082019050919050565b6000602082019050818103600083015261444d81614411565b9050919050565b60006040820190506144696000830185613750565b6144766020830184613750565b9392505050565b60008151905061448c816136c5565b92915050565b6000602082840312156144a8576144a761351a565b5b60006144b68482850161447d565b91505092915050565b7f4e6f7420656e6f756768206f6620455243323020746f6b656e00000000000000600082015250565b60006144f560198361361e565b9150614500826144bf565b602082019050919050565b60006020820190508181036000830152614524816144e8565b9050919050565b60006060820190506145406000830186613750565b61454d6020830185613750565b61455a60408301846135e9565b949350505050565b60008151905061457181613a0b565b92915050565b60006020828403121561458d5761458c61351a565b5b600061459b84828501614562565b91505092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006145da60138361361e565b91506145e5826145a4565b602082019050919050565b60006020820190508181036000830152614609816145cd565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061466c602f8361361e565b915061467782614610565b604082019050919050565b6000602082019050818103600083015261469b8161465f565b9050919050565b600081905092915050565b60006146b882613613565b6146c281856146a2565b93506146d281856020860161362f565b80840191505092915050565b600081546146eb81613e53565b6146f581866146a2565b94506001821660008114614710576001811461472557614758565b60ff1983168652811515820286019350614758565b61472e85613e84565b60005b8381101561475057815481890152600182019150602081019050614731565b838801955050505b50505092915050565b600061476d82866146ad565b915061477982856146ad565b915061478582846146de565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147ee60268361361e565b91506147f982614792565b604082019050919050565b6000602082019050818103600083015261481d816147e1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061485a60208361361e565b915061486582614824565b602082019050919050565b600060208201905081810360008301526148898161484d565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006148c6601f8361361e565b91506148d182614890565b602082019050919050565b600060208201905081810360008301526148f5816148b9565b9050919050565b6000614907826135df565b9150614912836135df565b9250828202614920816135df565b91508282048414831517614937576149366140f8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006149a7826135df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036149d9576149d86140f8565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000614a0b826149e4565b614a1581856149ef565b9350614a2581856020860161362f565b614a2e81613659565b840191505092915050565b6000608082019050614a4e6000830187613750565b614a5b6020830186613750565b614a6860408301856135e9565b8181036060830152614a7a8184614a00565b905095945050505050565b600081519050614a9481613550565b92915050565b600060208284031215614ab057614aaf61351a565b5b6000614abe84828501614a85565b9150509291505056fea2646970667358221220ffb4c244f71f553b0d311986cd71c705cbdabf0a07e87afc59ec34d876119a8464736f6c63430008110033

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

0000000000000000000000005283d291dbcf85356a21ba090e6db59121208b44

-----Decoded View---------------
Arg [0] : token (address): 0x5283D291DBCF85356A21bA090E6db59121208b44

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005283d291dbcf85356a21ba090e6db59121208b44


Deployed Bytecode Sourcemap

441:6948:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1171:36:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1249:20:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6613:163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;825:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4121:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5325:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3959:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6782:169:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4470:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4652:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;796:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5661:145;;;;;;;;;;;;;:::i;:::-;;737:142:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6957:186:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1132:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5089:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;947:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1090:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1012:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4969:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;874:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;980:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11391:150:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;559:41:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;904:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4556:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7045:230:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;604:36:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5427:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5223:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10208:102:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1370:1012:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6433:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1049:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4853:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4296:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5527:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7149:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2531:785;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4386:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3320:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;679:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3521:434;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;644:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;757:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1211:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4038:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17282:162:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;720:33:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4208:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9155:630:13;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;1171:36:9:-;;;;:::o;10039:98:13:-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;1249:20:9:-;;;;;;;;;;;;;:::o;6613:163::-;6717:8;2227:30:12;2248:8;2227:20;:30::i;:::-;6737:32:9::1;6751:8;6761:7;6737:13;:32::i;:::-;6613:163:::0;;;:::o;825:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;4121:83::-;1094:13:0;:11;:13::i;:::-;4193:5:9::1;4177:7;;:22;;;;;;;;;;;;;;;;;;4121:83:::0;:::o;5325:98::-;1094:13:0;:11;:13::i;:::-;5408:10:9::1;5396:9;:22;;;;;;:::i;:::-;;5325:98:::0;:::o;3959:75::-;1094:13:0;:11;:13::i;:::-;4023:6:9::1;4014;;:15;;;;;;;;;;;;;;;;;;3959:75:::0;:::o;5894:317:13:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;6782:169:9:-;6891:4;2062:10:12;2054:18;;:4;:18;;;2050:81;;2088:32;2109:10;2088:20;:32::i;:::-;2050:81;6907:37:9::1;6926:4;6932:2;6936:7;6907:18;:37::i;:::-;6782:169:::0;;;;:::o;4470:82::-;1094:13:0;:11;:13::i;:::-;4540:7:9::1;4530;:17;;;;4470:82:::0;:::o;4652:197::-;1094:13:0;:11;:13::i;:::-;4782::9::1;:11;:13::i;:::-;4770:9;;:25;;;;:::i;:::-;4744:21;:52;;4736:61;;;::::0;::::1;;4823:21;4803:17;:41;;;;4652:197:::0;:::o;796:25::-;;;;:::o;5661:145::-;1094:13:0;:11;:13::i;:::-;2261:21:1::1;:19;:21::i;:::-;5717:7:9::2;5738;:5;:7::i;:::-;5730:21;;5759;5730:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5716:69;;;5798:2;5790:11;;;::::0;::::2;;5711:95;2303:20:1::1;:18;:20::i;:::-;5661:145:9:o:0;737:142:12:-;836:42;737:142;:::o;6957:186:9:-;7079:4;2062:10:12;2054:18;;:4;:18;;;2050:81;;2088:32;2109:10;2088:20;:32::i;:::-;2050:81;7095:41:9::1;7118:4;7124:2;7128:7;7095:22;:41::i;:::-;6957:186:::0;;;;:::o;1132:35::-;;;;:::o;5089:130::-;1094:13:0;:11;:13::i;:::-;5196:18:9::1;5176:17;:38;;;;;;:::i;:::-;;5089:130:::0;:::o;947:28::-;;;;;;;;;;;;;:::o;1090:38::-;;;;:::o;1012:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4969:116::-;1094:13:0;:11;:13::i;:::-;5065:15:9::1;5046:16;:34;;;;4969:116:::0;:::o;874:26::-;;;;;;;;;;;;;:::o;980:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11391:150:13:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;559:41:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;904:39::-;;;;;;;;;;;;;:::o;4556:92::-;1094:13:0;:11;:13::i;:::-;4633:10:9::1;4621:9;:22;;;;4556:92:::0;:::o;7045:230:13:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;604:36:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5427:96::-;1094:13:0;:11;:13::i;:::-;5507:11:9::1;5494:10;:24;;;;5427:96:::0;:::o;5223:98::-;1094:13:0;:11;:13::i;:::-;5306:10:9::1;5294:9;:22;;;;;;:::i;:::-;;5223:98:::0;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;10208:102:13:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;1370:1012:9:-;1485:4;1461:28;;:20;;;;;;;;;;;:28;;;1457:277;;1495:12;1537;:10;:12::i;:::-;1520:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;1510:41;;;;;;1495:56;;1567:50;1586:12;;1567:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600:10;;1612:4;1567:18;:50::i;:::-;1559:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;1666:1;1652:11;:15;:50;;;;;1686:16;;1671:11;:31;;1652:50;1644:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;1490:244;1457:277;1751:6;;;;;;;;;;;1750:7;1742:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;1813:1;1799:11;:15;:48;;;;;1833:14;;1818:11;:29;;1799:48;1791:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;1930:17;;1918:9;;:29;;;;:::i;:::-;1902:11;1886:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:62;;1878:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1988:11;:25;2000:12;:10;:12::i;:::-;1988:25;;;;;;;;;;;;;;;;;;;;;;;;;1987:26;1979:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2104:31;2123:11;2104:18;:31::i;:::-;2056:7;;;;;;;;;;;:17;;;2074:10;2094:4;2056:44;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:79;;2048:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;2222:7;;;;;;;;;;;:20;;;2243:10;2255:7;:5;:7::i;:::-;2264:31;2283:11;2264:18;:31::i;:::-;2222:74;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2331:4;2303:11;:25;2315:12;:10;:12::i;:::-;2303:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;2341:36;2351:12;:10;:12::i;:::-;2365:11;2341:9;:36::i;:::-;1370:1012;;;:::o;6433:174::-;6537:8;2227:30:12;2248:8;2227:20;:30::i;:::-;6557:43:9::1;6581:8;6591;6557:23;:43::i;:::-;6433:174:::0;;;:::o;1049:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4853:112::-;1094:13:0;:11;:13::i;:::-;4945:15:9::1;4928:14;:32;;;;4853:112:::0;:::o;4296:86::-;1094:13:0;:11;:13::i;:::-;4370:7:9::1;4358:9;:19;;;;4296:86:::0;:::o;5527:103::-;1094:13:0;:11;:13::i;:::-;5619:6:9::1;5596:20;;:29;;;;;;;;;;;;;;;;;;5527:103:::0;:::o;7149:238::-;7313:4;2062:10:12;2054:18;;:4;:18;;;2050:81;;2088:32;2109:10;2088:20;:32::i;:::-;2050:81;7333:47:9::1;7356:4;7362:2;7366:7;7375:4;7333:22;:47::i;:::-;7149:238:::0;;;;;:::o;2531:785::-;2634:11;2463:27;2478:11;2463:14;:27::i;:::-;2450:9;:40;;2442:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;2679:4:::1;2655:28;;:20;;;;;;;;;;;:28;;::::0;2651:277:::1;;2689:12;2731;:10;:12::i;:::-;2714:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;2704:41;;;;;;2689:56;;2761:50;2780:12;;2761:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2794:10;;2806:4;2761:18;:50::i;:::-;2753:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;2860:1;2846:11;:15;:50;;;;;2880:16;;2865:11;:31;;2846:50;2838:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;2684:244;2651:277;2943:6;;;;;;;;;;;2942:7;2934:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;3003:1;2989:11;:15;:48;;;;;3023:14;;3008:11;:29;;2989:48;2981:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;3120:17;;3108:9;;:29;;;;:::i;:::-;3092:11;3076:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:62;;3068:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;3176:11;:25;3188:12;:10;:12::i;:::-;3176:25;;;;;;;;;;;;;;;;;;;;;;;;;3175:26;3167:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3265:4;3237:11;:25;3249:12;:10;:12::i;:::-;3237:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;3275:36;3285:12;:10;:12::i;:::-;3299:11;3275:9;:36::i;:::-;2531:785:::0;;;;:::o;4386:80::-;1094:13:0;:11;:13::i;:::-;4456:5:9::1;4445:8;:16;;;;4386:80:::0;:::o;3320:197::-;1094:13:0;:11;:13::i;:::-;3439:9:9::1;;3423:11;3407:13;:11;:13::i;:::-;:27;;;;:::i;:::-;3406:42;;3398:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;3479:33;3489:9;3500:11;3479:9;:33::i;:::-;3320:197:::0;;:::o;679:36::-;;;;:::o;3521:434::-;3595:13;3624:17;3632:8;3624:7;:17::i;:::-;3616:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;3716:5;3704:17;;:8;;;;;;;;;;;:17;;;3700:62;;3738:17;3731:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3700:62;3768:28;3799:10;:8;:10::i;:::-;3768:41;;3853:1;3828:14;3822:28;:32;:128;;;;;;;;;;;;;;;;;3889:14;3905:19;:8;:17;:19::i;:::-;3926:9;3872:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3822:128;3815:135;;;3521:434;;;;:::o;644:31::-;;;;:::o;757:35::-;;;;:::o;1211:33::-;;;;:::o;4038:79::-;1094:13:0;:11;:13::i;:::-;4106:6:9::1;4095:8;;:17;;;;;;;;;;;;;;;;;;4038:79:::0;:::o;17282:162:13:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;::::0;2161:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;720:33:9:-;;;;:::o;4208:84::-;1094:13:0;:11;:13::i;:::-;4282:5:9::1;4269:10;:18;;;;4208:84:::0;:::o;17693:277:13:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;2281:412:12:-;2518:1;836:42;2470:45;;;:49;2466:221;;;836:42;2540;;;2591:4;2598:8;2540:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2535:142;;2653:8;2634:28;;;;;;;;;;;:::i;:::-;;;;;;;;2535:142;2466:221;2281:412;:::o;15812:398:13:-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;5827:93:9:-;5892:7;5914:1;5907:8;;5827:93;:::o;19903:2764:13:-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;2336:287:1:-;1759:1;2468:7;;:19;2460:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1759:1;2598:7;:18;;;;2336:287::o;2629:209::-;1716:1;2809:7;:22;;;;2629:209::o;22758:187:13:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;12515:1249::-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;13510:111;13527:1;13517:6;:11;13510:111;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;640:96:5:-;693:7;719:10;712:17;;640:96;:::o;1156:184:7:-;1277:4;1329;1300:25;1313:5;1320:4;1300:12;:25::i;:::-;:33;1293:40;;1156:184;;;;;:::o;6126:198:9:-;6194:13;6219:20;;;;;;;;;;;6215:68;;;6269:7;6256:10;;:20;;;;:::i;:::-;6249:27;;;;6215:68;6307:7;6296:8;;:18;;;;:::i;:::-;6289:25;;6126:198;;;;:::o;33423:110:13:-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;16901:231::-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;23526:396::-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;5924:197:9:-;5988:13;6013:20;;;;;;;;;;;6009:72;;;6072:1;6063:7;:10;;;;:::i;:::-;6050:9;;:24;;;;:::i;:::-;6043:31;;;;6009:72;6104:7;6094;;:17;;;;:::i;:::-;6087:24;;5924:197;;;;:::o;6328:102::-;6388:13;6416:9;6409:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6328:102;:::o;415:696:6:-;471:13;520:14;557:1;537:17;548:5;537:10;:17::i;:::-;:21;520:38;;572:20;606:6;595:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572:41;;627:11;753:6;749:2;745:15;737:6;733:28;726:35;;788:280;795:4;788:280;;;819:5;;;;;;;;958:8;953:2;946:5;942:14;937:30;932:3;924:44;1012:2;1003:11;;;;;;:::i;:::-;;;;;1045:1;1036:5;:10;788:280;1032:21;788:280;1088:6;1081:13;;;;;415:696;;;:::o;39437:103:13:-;39497:7;39523:10;39516:17;;39437:103;:::o;18828:474::-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;1994:290:7:-;2077:7;2096:20;2119:4;2096:27;;2138:9;2133:116;2157:5;:12;2153:1;:16;2133:116;;;2205:33;2215:12;2229:5;2235:1;2229:8;;;;;;;;:::i;:::-;;;;;;;;2205:9;:33::i;:::-;2190:48;;2171:3;;;;;:::i;:::-;;;;2133:116;;;;2265:12;2258:19;;;1994:290;;;;:::o;32675:669:13:-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;25948:697::-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;9889:890:8:-;9942:7;9961:14;9978:1;9961:18;;10026:6;10017:5;:15;10013:99;;10061:6;10052:15;;;;;;:::i;:::-;;;;;10095:2;10085:12;;;;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;;;;:::i;:::-;;;;;10207:2;10197:12;;;;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;;;;:::i;:::-;;;;;10319:2;10309:12;;;;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;;;;:::i;:::-;;;;;10429:1;10419:11;;;;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;;;;:::i;:::-;;;;;10538:1;10528:11;;;;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;;;;:::i;:::-;;;;;10647:1;10637:11;;;;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;;;;10676:64;10766:6;10759:13;;;9889:890;;;:::o;38475:143:13:-;38608:6;38475:143;;;;;:::o;8879:147:7:-;8942:7;8972:1;8968;:5;:51;;8999:20;9014:1;9017;8999:14;:20::i;:::-;8968:51;;;8976:20;8991:1;8994;8976:14;:20::i;:::-;8968:51;8961:58;;8879:147;;;;:::o;27091:2902:13:-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;9032:261:7:-;9100:13;9204:1;9198:4;9191:15;9232:1;9226:4;9219:15;9272:4;9266;9256:21;9247:30;;9032:261;;;;:::o;14837:318:13:-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;7:75:15:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:60::-;4517:3;4538:5;4531:12;;4489:60;;;:::o;4555:142::-;4605:9;4638:53;4656:34;4665:24;4683:5;4665:24;:::i;:::-;4656:34;:::i;:::-;4638:53;:::i;:::-;4625:66;;4555:142;;;:::o;4703:126::-;4753:9;4786:37;4817:5;4786:37;:::i;:::-;4773:50;;4703:126;;;:::o;4835:139::-;4898:9;4931:37;4962:5;4931:37;:::i;:::-;4918:50;;4835:139;;;:::o;4980:157::-;5080:50;5124:5;5080:50;:::i;:::-;5075:3;5068:63;4980:157;;:::o;5143:248::-;5249:4;5287:2;5276:9;5272:18;5264:26;;5300:84;5381:1;5370:9;5366:17;5357:6;5300:84;:::i;:::-;5143:248;;;;:::o;5397:122::-;5470:24;5488:5;5470:24;:::i;:::-;5463:5;5460:35;5450:63;;5509:1;5506;5499:12;5450:63;5397:122;:::o;5525:139::-;5571:5;5609:6;5596:20;5587:29;;5625:33;5652:5;5625:33;:::i;:::-;5525:139;;;;:::o;5670:474::-;5738:6;5746;5795:2;5783:9;5774:7;5770:23;5766:32;5763:119;;;5801:79;;:::i;:::-;5763:119;5921:1;5946:53;5991:7;5982:6;5971:9;5967:22;5946:53;:::i;:::-;5936:63;;5892:117;6048:2;6074:53;6119:7;6110:6;6099:9;6095:22;6074:53;:::i;:::-;6064:63;;6019:118;5670:474;;;;;:::o;6150:329::-;6209:6;6258:2;6246:9;6237:7;6233:23;6229:32;6226:119;;;6264:79;;:::i;:::-;6226:119;6384:1;6409:53;6454:7;6445:6;6434:9;6430:22;6409:53;:::i;:::-;6399:63;;6355:117;6150:329;;;;:::o;6485:117::-;6594:1;6591;6584:12;6608:117;6717:1;6714;6707:12;6731:180;6779:77;6776:1;6769:88;6876:4;6873:1;6866:15;6900:4;6897:1;6890:15;6917:281;7000:27;7022:4;7000:27;:::i;:::-;6992:6;6988:40;7130:6;7118:10;7115:22;7094:18;7082:10;7079:34;7076:62;7073:88;;;7141:18;;:::i;:::-;7073:88;7181:10;7177:2;7170:22;6960:238;6917:281;;:::o;7204:129::-;7238:6;7265:20;;:::i;:::-;7255:30;;7294:33;7322:4;7314:6;7294:33;:::i;:::-;7204:129;;;:::o;7339:308::-;7401:4;7491:18;7483:6;7480:30;7477:56;;;7513:18;;:::i;:::-;7477:56;7551:29;7573:6;7551:29;:::i;:::-;7543:37;;7635:4;7629;7625:15;7617:23;;7339:308;;;:::o;7653:146::-;7750:6;7745:3;7740;7727:30;7791:1;7782:6;7777:3;7773:16;7766:27;7653:146;;;:::o;7805:425::-;7883:5;7908:66;7924:49;7966:6;7924:49;:::i;:::-;7908:66;:::i;:::-;7899:75;;7997:6;7990:5;7983:21;8035:4;8028:5;8024:16;8073:3;8064:6;8059:3;8055:16;8052:25;8049:112;;;8080:79;;:::i;:::-;8049:112;8170:54;8217:6;8212:3;8207;8170:54;:::i;:::-;7889:341;7805:425;;;;;:::o;8250:340::-;8306:5;8355:3;8348:4;8340:6;8336:17;8332:27;8322:122;;8363:79;;:::i;:::-;8322:122;8480:6;8467:20;8505:79;8580:3;8572:6;8565:4;8557:6;8553:17;8505:79;:::i;:::-;8496:88;;8312:278;8250:340;;;;:::o;8596:509::-;8665:6;8714:2;8702:9;8693:7;8689:23;8685:32;8682:119;;;8720:79;;:::i;:::-;8682:119;8868:1;8857:9;8853:17;8840:31;8898:18;8890:6;8887:30;8884:117;;;8920:79;;:::i;:::-;8884:117;9025:63;9080:7;9071:6;9060:9;9056:22;9025:63;:::i;:::-;9015:73;;8811:287;8596:509;;;;:::o;9111:116::-;9181:21;9196:5;9181:21;:::i;:::-;9174:5;9171:32;9161:60;;9217:1;9214;9207:12;9161:60;9111:116;:::o;9233:133::-;9276:5;9314:6;9301:20;9292:29;;9330:30;9354:5;9330:30;:::i;:::-;9233:133;;;;:::o;9372:323::-;9428:6;9477:2;9465:9;9456:7;9452:23;9448:32;9445:119;;;9483:79;;:::i;:::-;9445:119;9603:1;9628:50;9670:7;9661:6;9650:9;9646:22;9628:50;:::i;:::-;9618:60;;9574:114;9372:323;;;;:::o;9701:619::-;9778:6;9786;9794;9843:2;9831:9;9822:7;9818:23;9814:32;9811:119;;;9849:79;;:::i;:::-;9811:119;9969:1;9994:53;10039:7;10030:6;10019:9;10015:22;9994:53;:::i;:::-;9984:63;;9940:117;10096:2;10122:53;10167:7;10158:6;10147:9;10143:22;10122:53;:::i;:::-;10112:63;;10067:118;10224:2;10250:53;10295:7;10286:6;10275:9;10271:22;10250:53;:::i;:::-;10240:63;;10195:118;9701:619;;;;;:::o;10326:77::-;10363:7;10392:5;10381:16;;10326:77;;;:::o;10409:118::-;10496:24;10514:5;10496:24;:::i;:::-;10491:3;10484:37;10409:118;;:::o;10533:222::-;10626:4;10664:2;10653:9;10649:18;10641:26;;10677:71;10745:1;10734:9;10730:17;10721:6;10677:71;:::i;:::-;10533:222;;;;:::o;10761:158::-;10843:9;10876:37;10907:5;10876:37;:::i;:::-;10863:50;;10761:158;;;:::o;10925:195::-;11044:69;11107:5;11044:69;:::i;:::-;11039:3;11032:82;10925:195;;:::o;11126:286::-;11251:4;11289:2;11278:9;11274:18;11266:26;;11302:103;11402:1;11391:9;11387:17;11378:6;11302:103;:::i;:::-;11126:286;;;;:::o;11418:122::-;11491:24;11509:5;11491:24;:::i;:::-;11484:5;11481:35;11471:63;;11530:1;11527;11520:12;11471:63;11418:122;:::o;11546:139::-;11592:5;11630:6;11617:20;11608:29;;11646:33;11673:5;11646:33;:::i;:::-;11546:139;;;;:::o;11691:329::-;11750:6;11799:2;11787:9;11778:7;11774:23;11770:32;11767:119;;;11805:79;;:::i;:::-;11767:119;11925:1;11950:53;11995:7;11986:6;11975:9;11971:22;11950:53;:::i;:::-;11940:63;;11896:117;11691:329;;;;:::o;12026:117::-;12135:1;12132;12125:12;12149:117;12258:1;12255;12248:12;12289:568;12362:8;12372:6;12422:3;12415:4;12407:6;12403:17;12399:27;12389:122;;12430:79;;:::i;:::-;12389:122;12543:6;12530:20;12520:30;;12573:18;12565:6;12562:30;12559:117;;;12595:79;;:::i;:::-;12559:117;12709:4;12701:6;12697:17;12685:29;;12763:3;12755:4;12747:6;12743:17;12733:8;12729:32;12726:41;12723:128;;;12770:79;;:::i;:::-;12723:128;12289:568;;;;;:::o;12863:704::-;12958:6;12966;12974;13023:2;13011:9;13002:7;12998:23;12994:32;12991:119;;;13029:79;;:::i;:::-;12991:119;13149:1;13174:53;13219:7;13210:6;13199:9;13195:22;13174:53;:::i;:::-;13164:63;;13120:117;13304:2;13293:9;13289:18;13276:32;13335:18;13327:6;13324:30;13321:117;;;13357:79;;:::i;:::-;13321:117;13470:80;13542:7;13533:6;13522:9;13518:22;13470:80;:::i;:::-;13452:98;;;;13247:313;12863:704;;;;;:::o;13573:468::-;13638:6;13646;13695:2;13683:9;13674:7;13670:23;13666:32;13663:119;;;13701:79;;:::i;:::-;13663:119;13821:1;13846:53;13891:7;13882:6;13871:9;13867:22;13846:53;:::i;:::-;13836:63;;13792:117;13948:2;13974:50;14016:7;14007:6;13996:9;13992:22;13974:50;:::i;:::-;13964:60;;13919:115;13573:468;;;;;:::o;14047:307::-;14108:4;14198:18;14190:6;14187:30;14184:56;;;14220:18;;:::i;:::-;14184:56;14258:29;14280:6;14258:29;:::i;:::-;14250:37;;14342:4;14336;14332:15;14324:23;;14047:307;;;:::o;14360:423::-;14437:5;14462:65;14478:48;14519:6;14478:48;:::i;:::-;14462:65;:::i;:::-;14453:74;;14550:6;14543:5;14536:21;14588:4;14581:5;14577:16;14626:3;14617:6;14612:3;14608:16;14605:25;14602:112;;;14633:79;;:::i;:::-;14602:112;14723:54;14770:6;14765:3;14760;14723:54;:::i;:::-;14443:340;14360:423;;;;;:::o;14802:338::-;14857:5;14906:3;14899:4;14891:6;14887:17;14883:27;14873:122;;14914:79;;:::i;:::-;14873:122;15031:6;15018:20;15056:78;15130:3;15122:6;15115:4;15107:6;15103:17;15056:78;:::i;:::-;15047:87;;14863:277;14802:338;;;;:::o;15146:943::-;15241:6;15249;15257;15265;15314:3;15302:9;15293:7;15289:23;15285:33;15282:120;;;15321:79;;:::i;:::-;15282:120;15441:1;15466:53;15511:7;15502:6;15491:9;15487:22;15466:53;:::i;:::-;15456:63;;15412:117;15568:2;15594:53;15639:7;15630:6;15619:9;15615:22;15594:53;:::i;:::-;15584:63;;15539:118;15696:2;15722:53;15767:7;15758:6;15747:9;15743:22;15722:53;:::i;:::-;15712:63;;15667:118;15852:2;15841:9;15837:18;15824:32;15883:18;15875:6;15872:30;15869:117;;;15905:79;;:::i;:::-;15869:117;16010:62;16064:7;16055:6;16044:9;16040:22;16010:62;:::i;:::-;16000:72;;15795:287;15146:943;;;;;;;:::o;16095:474::-;16163:6;16171;16220:2;16208:9;16199:7;16195:23;16191:32;16188:119;;;16226:79;;:::i;:::-;16188:119;16346:1;16371:53;16416:7;16407:6;16396:9;16392:22;16371:53;:::i;:::-;16361:63;;16317:117;16473:2;16499:53;16544:7;16535:6;16524:9;16520:22;16499:53;:::i;:::-;16489:63;;16444:118;16095:474;;;;;:::o;16575:::-;16643:6;16651;16700:2;16688:9;16679:7;16675:23;16671:32;16668:119;;;16706:79;;:::i;:::-;16668:119;16826:1;16851:53;16896:7;16887:6;16876:9;16872:22;16851:53;:::i;:::-;16841:63;;16797:117;16953:2;16979:53;17024:7;17015:6;17004:9;17000:22;16979:53;:::i;:::-;16969:63;;16924:118;16575:474;;;;;:::o;17055:180::-;17103:77;17100:1;17093:88;17200:4;17197:1;17190:15;17224:4;17221:1;17214:15;17241:320;17285:6;17322:1;17316:4;17312:12;17302:22;;17369:1;17363:4;17359:12;17390:18;17380:81;;17446:4;17438:6;17434:17;17424:27;;17380:81;17508:2;17500:6;17497:14;17477:18;17474:38;17471:84;;17527:18;;:::i;:::-;17471:84;17292:269;17241:320;;;:::o;17567:141::-;17616:4;17639:3;17631:11;;17662:3;17659:1;17652:14;17696:4;17693:1;17683:18;17675:26;;17567:141;;;:::o;17714:93::-;17751:6;17798:2;17793;17786:5;17782:14;17778:23;17768:33;;17714:93;;;:::o;17813:107::-;17857:8;17907:5;17901:4;17897:16;17876:37;;17813:107;;;;:::o;17926:393::-;17995:6;18045:1;18033:10;18029:18;18068:97;18098:66;18087:9;18068:97;:::i;:::-;18186:39;18216:8;18205:9;18186:39;:::i;:::-;18174:51;;18258:4;18254:9;18247:5;18243:21;18234:30;;18307:4;18297:8;18293:19;18286:5;18283:30;18273:40;;18002:317;;17926:393;;;;;:::o;18325:142::-;18375:9;18408:53;18426:34;18435:24;18453:5;18435:24;:::i;:::-;18426:34;:::i;:::-;18408:53;:::i;:::-;18395:66;;18325:142;;;:::o;18473:75::-;18516:3;18537:5;18530:12;;18473:75;;;:::o;18554:269::-;18664:39;18695:7;18664:39;:::i;:::-;18725:91;18774:41;18798:16;18774:41;:::i;:::-;18766:6;18759:4;18753:11;18725:91;:::i;:::-;18719:4;18712:105;18630:193;18554:269;;;:::o;18829:73::-;18874:3;18829:73;:::o;18908:189::-;18985:32;;:::i;:::-;19026:65;19084:6;19076;19070:4;19026:65;:::i;:::-;18961:136;18908:189;;:::o;19103:186::-;19163:120;19180:3;19173:5;19170:14;19163:120;;;19234:39;19271:1;19264:5;19234:39;:::i;:::-;19207:1;19200:5;19196:13;19187:22;;19163:120;;;19103:186;;:::o;19295:543::-;19396:2;19391:3;19388:11;19385:446;;;19430:38;19462:5;19430:38;:::i;:::-;19514:29;19532:10;19514:29;:::i;:::-;19504:8;19500:44;19697:2;19685:10;19682:18;19679:49;;;19718:8;19703:23;;19679:49;19741:80;19797:22;19815:3;19797:22;:::i;:::-;19787:8;19783:37;19770:11;19741:80;:::i;:::-;19400:431;;19385:446;19295:543;;;:::o;19844:117::-;19898:8;19948:5;19942:4;19938:16;19917:37;;19844:117;;;;:::o;19967:169::-;20011:6;20044:51;20092:1;20088:6;20080:5;20077:1;20073:13;20044:51;:::i;:::-;20040:56;20125:4;20119;20115:15;20105:25;;20018:118;19967:169;;;;:::o;20141:295::-;20217:4;20363:29;20388:3;20382:4;20363:29;:::i;:::-;20355:37;;20425:3;20422:1;20418:11;20412:4;20409:21;20401:29;;20141:295;;;;:::o;20441:1395::-;20558:37;20591:3;20558:37;:::i;:::-;20660:18;20652:6;20649:30;20646:56;;;20682:18;;:::i;:::-;20646:56;20726:38;20758:4;20752:11;20726:38;:::i;:::-;20811:67;20871:6;20863;20857:4;20811:67;:::i;:::-;20905:1;20929:4;20916:17;;20961:2;20953:6;20950:14;20978:1;20973:618;;;;21635:1;21652:6;21649:77;;;21701:9;21696:3;21692:19;21686:26;21677:35;;21649:77;21752:67;21812:6;21805:5;21752:67;:::i;:::-;21746:4;21739:81;21608:222;20943:887;;20973:618;21025:4;21021:9;21013:6;21009:22;21059:37;21091:4;21059:37;:::i;:::-;21118:1;21132:208;21146:7;21143:1;21140:14;21132:208;;;21225:9;21220:3;21216:19;21210:26;21202:6;21195:42;21276:1;21268:6;21264:14;21254:24;;21323:2;21312:9;21308:18;21295:31;;21169:4;21166:1;21162:12;21157:17;;21132:208;;;21368:6;21359:7;21356:19;21353:179;;;21426:9;21421:3;21417:19;21411:26;21469:48;21511:4;21503:6;21499:17;21488:9;21469:48;:::i;:::-;21461:6;21454:64;21376:156;21353:179;21578:1;21574;21566:6;21562:14;21558:22;21552:4;21545:36;20980:611;;;20943:887;;20533:1303;;;20441:1395;;:::o;21842:180::-;21890:77;21887:1;21880:88;21987:4;21984:1;21977:15;22011:4;22008:1;22001:15;22028:194;22068:4;22088:20;22106:1;22088:20;:::i;:::-;22083:25;;22122:20;22140:1;22122:20;:::i;:::-;22117:25;;22166:1;22163;22159:9;22151:17;;22190:1;22184:4;22181:11;22178:37;;;22195:18;;:::i;:::-;22178:37;22028:194;;;;:::o;22228:147::-;22329:11;22366:3;22351:18;;22228:147;;;;:::o;22381:114::-;;:::o;22501:398::-;22660:3;22681:83;22762:1;22757:3;22681:83;:::i;:::-;22674:90;;22773:93;22862:3;22773:93;:::i;:::-;22891:1;22886:3;22882:11;22875:18;;22501:398;;;:::o;22905:379::-;23089:3;23111:147;23254:3;23111:147;:::i;:::-;23104:154;;23275:3;23268:10;;22905:379;;;:::o;23290:94::-;23323:8;23371:5;23367:2;23363:14;23342:35;;23290:94;;;:::o;23390:::-;23429:7;23458:20;23472:5;23458:20;:::i;:::-;23447:31;;23390:94;;;:::o;23490:100::-;23529:7;23558:26;23578:5;23558:26;:::i;:::-;23547:37;;23490:100;;;:::o;23596:157::-;23701:45;23721:24;23739:5;23721:24;:::i;:::-;23701:45;:::i;:::-;23696:3;23689:58;23596:157;;:::o;23759:256::-;23871:3;23886:75;23957:3;23948:6;23886:75;:::i;:::-;23986:2;23981:3;23977:12;23970:19;;24006:3;23999:10;;23759:256;;;;:::o;24021:164::-;24161:16;24157:1;24149:6;24145:14;24138:40;24021:164;:::o;24191:366::-;24333:3;24354:67;24418:2;24413:3;24354:67;:::i;:::-;24347:74;;24430:93;24519:3;24430:93;:::i;:::-;24548:2;24543:3;24539:12;24532:19;;24191:366;;;:::o;24563:419::-;24729:4;24767:2;24756:9;24752:18;24744:26;;24816:9;24810:4;24806:20;24802:1;24791:9;24787:17;24780:47;24844:131;24970:4;24844:131;:::i;:::-;24836:139;;24563:419;;;:::o;24988:170::-;25128:22;25124:1;25116:6;25112:14;25105:46;24988:170;:::o;25164:366::-;25306:3;25327:67;25391:2;25386:3;25327:67;:::i;:::-;25320:74;;25403:93;25492:3;25403:93;:::i;:::-;25521:2;25516:3;25512:12;25505:19;;25164:366;;;:::o;25536:419::-;25702:4;25740:2;25729:9;25725:18;25717:26;;25789:9;25783:4;25779:20;25775:1;25764:9;25760:17;25753:47;25817:131;25943:4;25817:131;:::i;:::-;25809:139;;25536:419;;;:::o;25961:173::-;26101:25;26097:1;26089:6;26085:14;26078:49;25961:173;:::o;26140:366::-;26282:3;26303:67;26367:2;26362:3;26303:67;:::i;:::-;26296:74;;26379:93;26468:3;26379:93;:::i;:::-;26497:2;26492:3;26488:12;26481:19;;26140:366;;;:::o;26512:419::-;26678:4;26716:2;26705:9;26701:18;26693:26;;26765:9;26759:4;26755:20;26751:1;26740:9;26736:17;26729:47;26793:131;26919:4;26793:131;:::i;:::-;26785:139;;26512:419;;;:::o;26937:191::-;26977:3;26996:20;27014:1;26996:20;:::i;:::-;26991:25;;27030:20;27048:1;27030:20;:::i;:::-;27025:25;;27073:1;27070;27066:9;27059:16;;27094:3;27091:1;27088:10;27085:36;;;27101:18;;:::i;:::-;27085:36;26937:191;;;;:::o;27134:170::-;27274:22;27270:1;27262:6;27258:14;27251:46;27134:170;:::o;27310:366::-;27452:3;27473:67;27537:2;27532:3;27473:67;:::i;:::-;27466:74;;27549:93;27638:3;27549:93;:::i;:::-;27667:2;27662:3;27658:12;27651:19;;27310:366;;;:::o;27682:419::-;27848:4;27886:2;27875:9;27871:18;27863:26;;27935:9;27929:4;27925:20;27921:1;27910:9;27906:17;27899:47;27963:131;28089:4;27963:131;:::i;:::-;27955:139;;27682:419;;;:::o;28107:174::-;28247:26;28243:1;28235:6;28231:14;28224:50;28107:174;:::o;28287:366::-;28429:3;28450:67;28514:2;28509:3;28450:67;:::i;:::-;28443:74;;28526:93;28615:3;28526:93;:::i;:::-;28644:2;28639:3;28635:12;28628:19;;28287:366;;;:::o;28659:419::-;28825:4;28863:2;28852:9;28848:18;28840:26;;28912:9;28906:4;28902:20;28898:1;28887:9;28883:17;28876:47;28940:131;29066:4;28940:131;:::i;:::-;28932:139;;28659:419;;;:::o;29084:332::-;29205:4;29243:2;29232:9;29228:18;29220:26;;29256:71;29324:1;29313:9;29309:17;29300:6;29256:71;:::i;:::-;29337:72;29405:2;29394:9;29390:18;29381:6;29337:72;:::i;:::-;29084:332;;;;;:::o;29422:143::-;29479:5;29510:6;29504:13;29495:22;;29526:33;29553:5;29526:33;:::i;:::-;29422:143;;;;:::o;29571:351::-;29641:6;29690:2;29678:9;29669:7;29665:23;29661:32;29658:119;;;29696:79;;:::i;:::-;29658:119;29816:1;29841:64;29897:7;29888:6;29877:9;29873:22;29841:64;:::i;:::-;29831:74;;29787:128;29571:351;;;;:::o;29928:175::-;30068:27;30064:1;30056:6;30052:14;30045:51;29928:175;:::o;30109:366::-;30251:3;30272:67;30336:2;30331:3;30272:67;:::i;:::-;30265:74;;30348:93;30437:3;30348:93;:::i;:::-;30466:2;30461:3;30457:12;30450:19;;30109:366;;;:::o;30481:419::-;30647:4;30685:2;30674:9;30670:18;30662:26;;30734:9;30728:4;30724:20;30720:1;30709:9;30705:17;30698:47;30762:131;30888:4;30762:131;:::i;:::-;30754:139;;30481:419;;;:::o;30906:442::-;31055:4;31093:2;31082:9;31078:18;31070:26;;31106:71;31174:1;31163:9;31159:17;31150:6;31106:71;:::i;:::-;31187:72;31255:2;31244:9;31240:18;31231:6;31187:72;:::i;:::-;31269;31337:2;31326:9;31322:18;31313:6;31269:72;:::i;:::-;30906:442;;;;;;:::o;31354:137::-;31408:5;31439:6;31433:13;31424:22;;31455:30;31479:5;31455:30;:::i;:::-;31354:137;;;;:::o;31497:345::-;31564:6;31613:2;31601:9;31592:7;31588:23;31584:32;31581:119;;;31619:79;;:::i;:::-;31581:119;31739:1;31764:61;31817:7;31808:6;31797:9;31793:22;31764:61;:::i;:::-;31754:71;;31710:125;31497:345;;;;:::o;31848:169::-;31988:21;31984:1;31976:6;31972:14;31965:45;31848:169;:::o;32023:366::-;32165:3;32186:67;32250:2;32245:3;32186:67;:::i;:::-;32179:74;;32262:93;32351:3;32262:93;:::i;:::-;32380:2;32375:3;32371:12;32364:19;;32023:366;;;:::o;32395:419::-;32561:4;32599:2;32588:9;32584:18;32576:26;;32648:9;32642:4;32638:20;32634:1;32623:9;32619:17;32612:47;32676:131;32802:4;32676:131;:::i;:::-;32668:139;;32395:419;;;:::o;32820:234::-;32960:34;32956:1;32948:6;32944:14;32937:58;33029:17;33024:2;33016:6;33012:15;33005:42;32820:234;:::o;33060:366::-;33202:3;33223:67;33287:2;33282:3;33223:67;:::i;:::-;33216:74;;33299:93;33388:3;33299:93;:::i;:::-;33417:2;33412:3;33408:12;33401:19;;33060:366;;;:::o;33432:419::-;33598:4;33636:2;33625:9;33621:18;33613:26;;33685:9;33679:4;33675:20;33671:1;33660:9;33656:17;33649:47;33713:131;33839:4;33713:131;:::i;:::-;33705:139;;33432:419;;;:::o;33857:148::-;33959:11;33996:3;33981:18;;33857:148;;;;:::o;34011:390::-;34117:3;34145:39;34178:5;34145:39;:::i;:::-;34200:89;34282:6;34277:3;34200:89;:::i;:::-;34193:96;;34298:65;34356:6;34351:3;34344:4;34337:5;34333:16;34298:65;:::i;:::-;34388:6;34383:3;34379:16;34372:23;;34121:280;34011:390;;;;:::o;34431:874::-;34534:3;34571:5;34565:12;34600:36;34626:9;34600:36;:::i;:::-;34652:89;34734:6;34729:3;34652:89;:::i;:::-;34645:96;;34772:1;34761:9;34757:17;34788:1;34783:166;;;;34963:1;34958:341;;;;34750:549;;34783:166;34867:4;34863:9;34852;34848:25;34843:3;34836:38;34929:6;34922:14;34915:22;34907:6;34903:35;34898:3;34894:45;34887:52;;34783:166;;34958:341;35025:38;35057:5;35025:38;:::i;:::-;35085:1;35099:154;35113:6;35110:1;35107:13;35099:154;;;35187:7;35181:14;35177:1;35172:3;35168:11;35161:35;35237:1;35228:7;35224:15;35213:26;;35135:4;35132:1;35128:12;35123:17;;35099:154;;;35282:6;35277:3;35273:16;35266:23;;34965:334;;34750:549;;34538:767;;34431:874;;;;:::o;35311:589::-;35536:3;35558:95;35649:3;35640:6;35558:95;:::i;:::-;35551:102;;35670:95;35761:3;35752:6;35670:95;:::i;:::-;35663:102;;35782:92;35870:3;35861:6;35782:92;:::i;:::-;35775:99;;35891:3;35884:10;;35311:589;;;;;;:::o;35906:225::-;36046:34;36042:1;36034:6;36030:14;36023:58;36115:8;36110:2;36102:6;36098:15;36091:33;35906:225;:::o;36137:366::-;36279:3;36300:67;36364:2;36359:3;36300:67;:::i;:::-;36293:74;;36376:93;36465:3;36376:93;:::i;:::-;36494:2;36489:3;36485:12;36478:19;;36137:366;;;:::o;36509:419::-;36675:4;36713:2;36702:9;36698:18;36690:26;;36762:9;36756:4;36752:20;36748:1;36737:9;36733:17;36726:47;36790:131;36916:4;36790:131;:::i;:::-;36782:139;;36509:419;;;:::o;36934:182::-;37074:34;37070:1;37062:6;37058:14;37051:58;36934:182;:::o;37122:366::-;37264:3;37285:67;37349:2;37344:3;37285:67;:::i;:::-;37278:74;;37361:93;37450:3;37361:93;:::i;:::-;37479:2;37474:3;37470:12;37463:19;;37122:366;;;:::o;37494:419::-;37660:4;37698:2;37687:9;37683:18;37675:26;;37747:9;37741:4;37737:20;37733:1;37722:9;37718:17;37711:47;37775:131;37901:4;37775:131;:::i;:::-;37767:139;;37494:419;;;:::o;37919:181::-;38059:33;38055:1;38047:6;38043:14;38036:57;37919:181;:::o;38106:366::-;38248:3;38269:67;38333:2;38328:3;38269:67;:::i;:::-;38262:74;;38345:93;38434:3;38345:93;:::i;:::-;38463:2;38458:3;38454:12;38447:19;;38106:366;;;:::o;38478:419::-;38644:4;38682:2;38671:9;38667:18;38659:26;;38731:9;38725:4;38721:20;38717:1;38706:9;38702:17;38695:47;38759:131;38885:4;38759:131;:::i;:::-;38751:139;;38478:419;;;:::o;38903:410::-;38943:7;38966:20;38984:1;38966:20;:::i;:::-;38961:25;;39000:20;39018:1;39000:20;:::i;:::-;38995:25;;39055:1;39052;39048:9;39077:30;39095:11;39077:30;:::i;:::-;39066:41;;39256:1;39247:7;39243:15;39240:1;39237:22;39217:1;39210:9;39190:83;39167:139;;39286:18;;:::i;:::-;39167:139;38951:362;38903:410;;;;:::o;39319:180::-;39367:77;39364:1;39357:88;39464:4;39461:1;39454:15;39488:4;39485:1;39478:15;39505:180;39553:77;39550:1;39543:88;39650:4;39647:1;39640:15;39674:4;39671:1;39664:15;39691:233;39730:3;39753:24;39771:5;39753:24;:::i;:::-;39744:33;;39799:66;39792:5;39789:77;39786:103;;39869:18;;:::i;:::-;39786:103;39916:1;39909:5;39905:13;39898:20;;39691:233;;;:::o;39930:98::-;39981:6;40015:5;40009:12;39999:22;;39930:98;;;:::o;40034:168::-;40117:11;40151:6;40146:3;40139:19;40191:4;40186:3;40182:14;40167:29;;40034:168;;;;:::o;40208:373::-;40294:3;40322:38;40354:5;40322:38;:::i;:::-;40376:70;40439:6;40434:3;40376:70;:::i;:::-;40369:77;;40455:65;40513:6;40508:3;40501:4;40494:5;40490:16;40455:65;:::i;:::-;40545:29;40567:6;40545:29;:::i;:::-;40540:3;40536:39;40529:46;;40298:283;40208:373;;;;:::o;40587:640::-;40782:4;40820:3;40809:9;40805:19;40797:27;;40834:71;40902:1;40891:9;40887:17;40878:6;40834:71;:::i;:::-;40915:72;40983:2;40972:9;40968:18;40959:6;40915:72;:::i;:::-;40997;41065:2;41054:9;41050:18;41041:6;40997:72;:::i;:::-;41116:9;41110:4;41106:20;41101:2;41090:9;41086:18;41079:48;41144:76;41215:4;41206:6;41144:76;:::i;:::-;41136:84;;40587:640;;;;;;;:::o;41233:141::-;41289:5;41320:6;41314:13;41305:22;;41336:32;41362:5;41336:32;:::i;:::-;41233:141;;;;:::o;41380:349::-;41449:6;41498:2;41486:9;41477:7;41473:23;41469:32;41466:119;;;41504:79;;:::i;:::-;41466:119;41624:1;41649:63;41704:7;41695:6;41684:9;41680:22;41649:63;:::i;:::-;41639:73;;41595:127;41380:349;;;;:::o

Swarm Source

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