MATIC Price: $1.02 (-1.43%)
Gas: 242 GWei
 

Overview

MATIC Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 MATIC

MATIC Value

$0.00

Sponsored

Transaction Hash
Method
Block
From
To
Value
Get Random Winne...284906582022-05-19 2:03:19679 days ago1652925799IN
0xf9817B7A...d6633B090
0 MATIC0.0195755938.61040423
Get Random Numbe...284906032022-05-19 2:00:45679 days ago1652925645IN
0xf9817B7A...d6633B090
0 MATIC0.0050621533.42439824
0x60c06040284554002022-05-18 4:32:38680 days ago1652848358IN
 Create: BCRCRaffleApr2022
0 MATIC0.0563728139.2

Parent Txn Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BCRCRaffleApr2022

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at polygonscan.com on 2022-05-18
*/

// Sources flattened with hardhat v2.8.2 https://hardhat.org
// File @openzeppelin/contracts/utils/[email protected]
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

/*

$$$$$$$\   $$$$$$\  $$$$$$$\   $$$$$$\        $$$$$$$\   $$$$$$\  $$$$$$$$\ $$$$$$$$\ $$\       $$$$$$$$\ 
$$  __$$\ $$  __$$\ $$  __$$\ $$  __$$\       $$  __$$\ $$  __$$\ $$  _____|$$  _____|$$ |      $$  _____|
$$ |  $$ |$$ /  \__|$$ |  $$ |$$ /  \__|      $$ |  $$ |$$ /  $$ |$$ |      $$ |      $$ |      $$ |      
$$$$$$$\ |$$ |      $$$$$$$  |$$ |            $$$$$$$  |$$$$$$$$ |$$$$$\    $$$$$\    $$ |      $$$$$\    
$$  __$$\ $$ |      $$  __$$< $$ |            $$  __$$< $$  __$$ |$$  __|   $$  __|   $$ |      $$  __|   
$$ |  $$ |$$ |  $$\ $$ |  $$ |$$ |  $$\       $$ |  $$ |$$ |  $$ |$$ |      $$ |      $$ |      $$ |      
$$$$$$$  |\$$$$$$  |$$ |  $$ |\$$$$$$  |      $$ |  $$ |$$ |  $$ |$$ |      $$ |      $$$$$$$$\ $$$$$$$$\ 
\_______/  \______/ \__|  \__| \______/       \__|  \__|\__|  \__|\__|      \__|      \________|\________|

This is a one time raffle smart contract for generating 10 winning numbers using Chainlink VRF.
The prize pool is consisted of a list of all Boss Cat Rocket Club transaction records of a given month from jpg.store.
This smart contract will pick 10 random winners out of the 1,111 Full Rockets and award 10% of the monthly royalties to the winners.
If the selected Full Rocket has not been assembled, the prize amount will be rolled over to the next month. 
If the rocket is assembled, and is not held in the jpg.store smart contract, we will simply send the ADA to the winning wallet holding the asset.
If the rocket is held within the jpg.store smart contract at the time, we will fetch the seller’s wallet and send the money there.
In a rare situation where a random number is picked more than once, the winner gets more % of the prize pool.

There are 602 total transactions in April 2022 from jpg.store.
The total sales volume of April 2022 is 1,497,338 ADA.
The total amount of April 2022 royalties is 44920.14 ADA.
10% of the monthly royalties, 4492 ADA, goes to the raffle prize pool. 
Each winner will get 449.2 ADA.

Unclaimed Full Rocket NFTs are stored inside one of wallets below:

addr1qx0aswjtevpcn89sdnfzydey9mx2lmaayt5jcuyz64jkrs5t62a85nka2eedzuj5vs0jmezjkewu9ukt6whj3q0vr82sngcjmv
addr1qxlhqrzjmsfpel2duleeu0zydv4wnurwn0ckyglxh784l06fjs6q6mj483qny507nv0q5tv5lt6fmhr29jycjkrz6cus2yuz5v
addr1q947w6q4mm9tyynwu84y0t8pdqed86ngqexqxg4ea8jffzh3rlz8qsffq883y6fq67mcv8dzrmh6e2akwuhzwcl42qcqdq3wpc
addr1q803prg4walsqssculuwezd28a8gd2vz97ndxymwr3v3cs300p8rn5stmwegrdqp88eq02afs5cagvqc0jx0wgawa76qpke2nd
addr1qy4zkw8tauvctfzk69lx7u7385x845rfeuklyvj7d8nt6y8nk7sqawu0m2znz5mxl6pmt9kj4k95py9pvhzt8lseyhxqtzg2zc

Website:
https://bosscatrocketclub.com/                                                                                                                                                                                                               
 
*/

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @chainlink/contracts/src/v0.8/interfaces/[email protected]

pragma solidity ^0.8.0;

interface LinkTokenInterface {
  function allowance(address owner, address spender) external view returns (uint256 remaining);

  function approve(address spender, uint256 value) external returns (bool success);

  function balanceOf(address owner) external view returns (uint256 balance);

  function decimals() external view returns (uint8 decimalPlaces);

  function decreaseApproval(address spender, uint256 addedValue) external returns (bool success);

  function increaseApproval(address spender, uint256 subtractedValue) external;

  function name() external view returns (string memory tokenName);

  function symbol() external view returns (string memory tokenSymbol);

  function totalSupply() external view returns (uint256 totalTokensIssued);

  function transfer(address to, uint256 value) external returns (bool success);

  function transferAndCall(
    address to,
    uint256 value,
    bytes calldata data
  ) external returns (bool success);

  function transferFrom(
    address from,
    address to,
    uint256 value
  ) external returns (bool success);
}


// File @chainlink/contracts/src/v0.8/[email protected]

pragma solidity ^0.8.0;

contract VRFRequestIDBase {
  /**
   * @notice returns the seed which is actually input to the VRF coordinator
   *
   * @dev To prevent repetition of VRF output due to repetition of the
   * @dev user-supplied seed, that seed is combined in a hash with the
   * @dev user-specific nonce, and the address of the consuming contract. The
   * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
   * @dev the final seed, but the nonce does protect against repetition in
   * @dev requests which are included in a single block.
   *
   * @param _userSeed VRF seed input provided by user
   * @param _requester Address of the requesting contract
   * @param _nonce User-specific nonce at the time of the request
   */
  function makeVRFInputSeed(
    bytes32 _keyHash,
    uint256 _userSeed,
    address _requester,
    uint256 _nonce
  ) internal pure returns (uint256) {
    return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
  }

  /**
   * @notice Returns the id for this request
   * @param _keyHash The serviceAgreement ID to be used for this request
   * @param _vRFInputSeed The seed to be passed directly to the VRF
   * @return The id for this request
   *
   * @dev Note that _vRFInputSeed is not the seed passed by the consuming
   * @dev contract, but the one generated by makeVRFInputSeed
   */
  function makeRequestId(bytes32 _keyHash, uint256 _vRFInputSeed) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
  }
}


// File @chainlink/contracts/src/v0.8/[email protected]

pragma solidity ^0.8.0;

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constuctor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash), and have told you the minimum LINK
 * @dev price for VRF service. Make sure your contract has sufficient LINK, and
 * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
 * @dev want to generate randomness from.
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomness method.
 *
 * @dev The randomness argument to fulfillRandomness is the actual random value
 * @dev generated from your seed.
 *
 * @dev The requestId argument is generated from the keyHash and the seed by
 * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
 * @dev requests open, you can use the requestId to track which seed is
 * @dev associated with which randomness. See VRFRequestIDBase.sol for more
 * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.)
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ. (Which is critical to making unpredictable randomness! See the
 * @dev next section.)
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the ultimate input to the VRF is mixed with the block hash of the
 * @dev block in which the request is made, user-provided seeds have no impact
 * @dev on its economic security properties. They are only included for API
 * @dev compatability with previous versions of this contract.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request.
 */
abstract contract VRFConsumerBase is VRFRequestIDBase {
  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBase expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomness the VRF output
   */
  function fulfillRandomness(bytes32 requestId, uint256 randomness) internal virtual;

  /**
   * @dev In order to keep backwards compatibility we have kept the user
   * seed field around. We remove the use of it because given that the blockhash
   * enters later, it overrides whatever randomness the used seed provides.
   * Given that it adds no security, and can easily lead to misunderstandings,
   * we have removed it from usage and can now provide a simpler API.
   */
  uint256 private constant USER_SEED_PLACEHOLDER = 0;

  /**
   * @notice requestRandomness initiates a request for VRF output given _seed
   *
   * @dev The fulfillRandomness method receives the output, once it's provided
   * @dev by the Oracle, and verified by the vrfCoordinator.
   *
   * @dev The _keyHash must already be registered with the VRFCoordinator, and
   * @dev the _fee must exceed the fee specified during registration of the
   * @dev _keyHash.
   *
   * @dev The _seed parameter is vestigial, and is kept only for API
   * @dev compatibility with older versions. It can't *hurt* to mix in some of
   * @dev your own randomness, here, but it's not necessary because the VRF
   * @dev oracle will mix the hash of the block containing your request into the
   * @dev VRF seed it ultimately uses.
   *
   * @param _keyHash ID of public key against which randomness is generated
   * @param _fee The amount of LINK to send with the request
   *
   * @return requestId unique ID for this request
   *
   * @dev The returned requestId can be used to distinguish responses to
   * @dev concurrent requests. It is passed as the first argument to
   * @dev fulfillRandomness.
   */
  function requestRandomness(bytes32 _keyHash, uint256 _fee) internal returns (bytes32 requestId) {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
    // This is the seed passed to VRFCoordinator. The oracle will mix this with
    // the hash of the block containing this request to obtain the seed/input
    // which is finally passed to the VRF cryptographic machinery.
    uint256 vRFSeed = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]);
    // nonces[_keyHash] must stay in sync with
    // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
    // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
    // This provides protection against the user repeating their input seed,
    // which would result in a predictable/duplicate output, if multiple such
    // requests appeared in the same block.
    nonces[_keyHash] = nonces[_keyHash] + 1;
    return makeRequestId(_keyHash, vRFSeed);
  }

  LinkTokenInterface internal immutable LINK;
  address private immutable vrfCoordinator;

  // Nonces for each VRF key from which randomness has been requested.
  //
  // Must stay in sync with VRFCoordinator[_keyHash][this]
  mapping(bytes32 => uint256) /* keyHash */ /* nonce */
    private nonces;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   * @param _link address of LINK token contract
   *
   * @dev https://docs.chain.link/docs/link-token-contracts
   */
  constructor(address _vrfCoordinator, address _link) {
    vrfCoordinator = _vrfCoordinator;
    LINK = LinkTokenInterface(_link);
  }

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomness(bytes32 requestId, uint256 randomness) external {
    require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
    fulfillRandomness(requestId, randomness);
  }
}


// File contracts/BCRCRaffleApr2022.sol

pragma solidity ^0.8.7;
 
contract BCRCRaffleApr2022 is VRFConsumerBase, Ownable {
    
    bytes32 internal keyHash;
    uint256 internal fee;

    uint256 public totalRecords = 1111;
    
    uint256 public randomValue;

    uint[] public winners;

    uint256 public winnerOne;
    uint256 public winnerTwo;
    uint256 public winnerThree;
    uint256 public winnerFour;
    uint256 public winnerFive;
    uint256 public winnerSix;
    uint256 public winnerSeven;
    uint256 public winnerEight;
    uint256 public winnerNine;
    uint256 public winnerTen;


    /**
     * Constructor inherits VRFConsumerBase
     * 
     * Network: Polygon Mainnet
     * Chainlink VRF Coordinator address: 0x3d2341ADb2D31f1c5530cDC622016af293177AE0
     * LINK token address:                0xb0897686c545045aFc77CF20eC7A532E3120E0F1
     * Key Hash: 0xf86195cf7690c55907b2b611ebb7343a6f649bff128701cc542f0569e2c549da
     * 
     * Network: Polygon Mumbai
     * Chainlink VRF Coordinator address: 0x8C7382F9D8f56b33781fE506E897a4F1e2d17255
     * LINK token address:                0x326C977E6efc84E512bB9C30f76E30c160eD06FB
     * Key Hash: 0x6e75b569a01ef56d18cab6a8e71e6600d6ce853834d4a5748b720d06f878b3a4
     */
    constructor() 
        VRFConsumerBase(
            0x3d2341ADb2D31f1c5530cDC622016af293177AE0, // VRF Coordinator
            0xb0897686c545045aFc77CF20eC7A532E3120E0F1  // LINK Token
        )
    {
        keyHash = 0xf86195cf7690c55907b2b611ebb7343a6f649bff128701cc542f0569e2c549da;
        fee = 0.0001 * 10 ** 18; // 0.1 LINK (Varies by network)
    }
    
    /** 
     * Requests randomness 
     */
    function getRandomNumber() public onlyOwner returns (bytes32 requestId) {
        require(LINK.balanceOf(address(this)) >= fee, "Not enough LINK");
        return requestRandomness(keyHash, fee);
    }

    /**
     * Callback function used by VRF Coordinator
     */
    function fulfillRandomness(bytes32 requestId, uint256 randomness) internal override {
        randomValue = randomness;
    }

    /**
     * Create 10 random numbers from the randomValue
     */
    function expand(uint256 randomValue, uint256 n) public view onlyOwner returns (uint256[] memory expandedValues) {
        expandedValues = new uint256[](n);
        for (uint256 i = 0; i < n; i++) {
            expandedValues[i] = (uint256(keccak256(abi.encode(randomValue, i))) % totalRecords) + 1;
        }
        return expandedValues;
    }

    function getRandomWinners() public onlyOwner {
        winners = expand(randomValue,10);
        winnerOne = winners[0];
        winnerTwo = winners[1];
        winnerThree = winners[2];
        winnerFour = winners[3];
        winnerFive = winners[4];
        winnerSix = winners[5];
        winnerSeven = winners[6];
        winnerEight = winners[7];
        winnerNine = winners[8];
        winnerTen = winners[9];     
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"uint256","name":"randomValue","type":"uint256"},{"internalType":"uint256","name":"n","type":"uint256"}],"name":"expand","outputs":[{"internalType":"uint256[]","name":"expandedValues","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRandomNumber","outputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRandomWinners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalRecords","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"winnerEight","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winnerFive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winnerFour","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winnerNine","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winnerOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winnerSeven","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winnerSix","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winnerTen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winnerThree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winnerTwo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"winners","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60c060405261045760045534801561001657600080fd5b50733d2341adb2d31f1c5530cdc622016af293177ae073b0897686c545045afc77cf20ec7a532e3120e0f18173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050506100cd6100c261010960201b60201c565b61011160201b60201c565b7ff86195cf7690c55907b2b611ebb7343a6f649bff128701cc542f0569e2c549da60001b600281905550655af3107a40006003819055506101d7565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60805160601c60a05160601c611763610210600039600081816107cd0152610c380152600081816109200152610bfc01526117636000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806393efd6f2116100ad578063d79b24c011610071578063d79b24c0146102ed578063dbdff2c11461030b578063dc0ae69314610329578063e90ebef714610347578063f2fde38b146103655761012c565b806393efd6f21461024757806394985ddd1461026557806399ba1e19146102815780639b5e4dcd1461029f578063a2fb1175146102bd5761012c565b806371712236116100f4578063717122361461019f5780637ff045f3146101bd578063874b3afc146101db5780638b44a7191461020b5780638da5cb5b146102295761012c565b8063037bee4d146101315780630ff1662e1461013b578063125f897414610159578063276801ec14610177578063715018a614610195575b600080fd5b610139610381565b005b61014361059d565b6040516101509190611322565b60405180910390f35b6101616105a3565b60405161016e9190611322565b60405180910390f35b61017f6105a9565b60405161018c9190611322565b60405180910390f35b61019d6105af565b005b6101a7610637565b6040516101b49190611322565b60405180910390f35b6101c561063d565b6040516101d29190611322565b60405180910390f35b6101f560048036038101906101f09190610f8d565b610643565b60405161020291906111f7565b60405180910390f35b610213610795565b6040516102209190611322565b60405180910390f35b61023161079b565b60405161023e919061119e565b60405180910390f35b61024f6107c5565b60405161025c9190611322565b60405180910390f35b61027f600480360381019061027a9190610ef3565b6107cb565b005b610289610867565b6040516102969190611322565b60405180910390f35b6102a761086d565b6040516102b49190611322565b60405180910390f35b6102d760048036038101906102d29190610f33565b610873565b6040516102e49190611322565b60405180910390f35b6102f5610897565b6040516103029190611322565b60405180910390f35b61031361089d565b6040516103209190611219565b60405180910390f35b610331610a1b565b60405161033e9190611322565b60405180910390f35b61034f610a21565b60405161035c9190611322565b60405180910390f35b61037f600480360381019061037a9190610e99565b610a27565b005b610389610b1f565b73ffffffffffffffffffffffffffffffffffffffff166103a761079b565b73ffffffffffffffffffffffffffffffffffffffff16146103fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f4906112e2565b60405180910390fd5b61040a600554600a610643565b6006908051906020019061041f929190610dc6565b50600660008154811061043557610434611593565b5b9060005260206000200154600781905550600660018154811061045b5761045a611593565b5b9060005260206000200154600881905550600660028154811061048157610480611593565b5b906000526020600020015460098190555060066003815481106104a7576104a6611593565b5b9060005260206000200154600a8190555060066004815481106104cd576104cc611593565b5b9060005260206000200154600b8190555060066005815481106104f3576104f2611593565b5b9060005260206000200154600c819055506006808154811061051857610517611593565b5b9060005260206000200154600d81905550600660078154811061053e5761053d611593565b5b9060005260206000200154600e81905550600660088154811061056457610563611593565b5b9060005260206000200154600f81905550600660098154811061058a57610589611593565b5b9060005260206000200154601081905550565b60105481565b60045481565b60055481565b6105b7610b1f565b73ffffffffffffffffffffffffffffffffffffffff166105d561079b565b73ffffffffffffffffffffffffffffffffffffffff161461062b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610622906112e2565b60405180910390fd5b6106356000610b27565b565b600c5481565b60095481565b606061064d610b1f565b73ffffffffffffffffffffffffffffffffffffffff1661066b61079b565b73ffffffffffffffffffffffffffffffffffffffff16146106c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b8906112e2565b60405180910390fd5b8167ffffffffffffffff8111156106db576106da6115c2565b5b6040519080825280602002602001820160405280156107095781602001602082028036833780820191505090505b50905060005b8281101561078e576001600454858360405160200161072f92919061133d565b6040516020818303038152906040528051906020012060001c6107529190611504565b61075c91906113cc565b82828151811061076f5761076e611593565b5b6020026020010181815250508080610786906114a7565b91505061070f565b5092915050565b600a5481565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085090611302565b60405180910390fd5b6108638282610bed565b5050565b600b5481565b600f5481565b6006818154811061088357600080fd5b906000526020600020016000915090505481565b60085481565b60006108a7610b1f565b73ffffffffffffffffffffffffffffffffffffffff166108c561079b565b73ffffffffffffffffffffffffffffffffffffffff161461091b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610912906112e2565b60405180910390fd5b6003547f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610977919061119e565b60206040518083038186803b15801561098f57600080fd5b505afa1580156109a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c79190610f60565b1015610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff906112c2565b60405180910390fd5b610a16600254600354610bf8565b905090565b600d5481565b60075481565b610a2f610b1f565b73ffffffffffffffffffffffffffffffffffffffff16610a4d61079b565b73ffffffffffffffffffffffffffffffffffffffff1614610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a906112e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a906112a2565b60405180910390fd5b610b1c81610b27565b50565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806005819055505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16634000aea07f000000000000000000000000000000000000000000000000000000000000000084866000604051602001610c6c929190611234565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401610c99939291906111b9565b602060405180830381600087803b158015610cb357600080fd5b505af1158015610cc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ceb9190610ec6565b506000610d0d8460003060008089815260200190815260200160002054610d57565b9050600160008086815260200190815260200160002054610d2e91906113cc565b60008086815260200190815260200160002081905550610d4e8482610d93565b91505092915050565b600084848484604051602001610d70949392919061125d565b6040516020818303038152906040528051906020012060001c9050949350505050565b60008282604051602001610da8929190611172565b60405160208183030381529060405280519060200120905092915050565b828054828255906000526020600020908101928215610e02579160200282015b82811115610e01578251825591602001919060010190610de6565b5b509050610e0f9190610e13565b5090565b5b80821115610e2c576000816000905550600101610e14565b5090565b600081359050610e3f816116d1565b92915050565b600081519050610e54816116e8565b92915050565b600081359050610e69816116ff565b92915050565b600081359050610e7e81611716565b92915050565b600081519050610e9381611716565b92915050565b600060208284031215610eaf57610eae6115f1565b5b6000610ebd84828501610e30565b91505092915050565b600060208284031215610edc57610edb6115f1565b5b6000610eea84828501610e45565b91505092915050565b60008060408385031215610f0a57610f096115f1565b5b6000610f1885828601610e5a565b9250506020610f2985828601610e6f565b9150509250929050565b600060208284031215610f4957610f486115f1565b5b6000610f5784828501610e6f565b91505092915050565b600060208284031215610f7657610f756115f1565b5b6000610f8484828501610e84565b91505092915050565b60008060408385031215610fa457610fa36115f1565b5b6000610fb285828601610e6f565b9250506020610fc385828601610e6f565b9150509250929050565b6000610fd9838361113d565b60208301905092915050565b610fee81611422565b82525050565b6000610fff82611376565b6110098185611399565b935061101483611366565b8060005b8381101561104557815161102c8882610fcd565b97506110378361138c565b925050600181019050611018565b5085935050505092915050565b61105b81611440565b82525050565b61107261106d82611440565b6114f0565b82525050565b600061108382611381565b61108d81856113aa565b935061109d818560208601611474565b6110a6816115f6565b840191505092915050565b60006110be6026836113bb565b91506110c982611607565b604082019050919050565b60006110e1600f836113bb565b91506110ec82611656565b602082019050919050565b60006111046020836113bb565b915061110f8261167f565b602082019050919050565b6000611127601f836113bb565b9150611132826116a8565b602082019050919050565b6111468161146a565b82525050565b6111558161146a565b82525050565b61116c6111678261146a565b6114fa565b82525050565b600061117e8285611061565b60208201915061118e828461115b565b6020820191508190509392505050565b60006020820190506111b36000830184610fe5565b92915050565b60006060820190506111ce6000830186610fe5565b6111db602083018561114c565b81810360408301526111ed8184611078565b9050949350505050565b600060208201905081810360008301526112118184610ff4565b905092915050565b600060208201905061122e6000830184611052565b92915050565b60006040820190506112496000830185611052565b611256602083018461114c565b9392505050565b60006080820190506112726000830187611052565b61127f602083018661114c565b61128c6040830185610fe5565b611299606083018461114c565b95945050505050565b600060208201905081810360008301526112bb816110b1565b9050919050565b600060208201905081810360008301526112db816110d4565b9050919050565b600060208201905081810360008301526112fb816110f7565b9050919050565b6000602082019050818103600083015261131b8161111a565b9050919050565b6000602082019050611337600083018461114c565b92915050565b6000604082019050611352600083018561114c565b61135f602083018461114c565b9392505050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006113d78261146a565b91506113e28361146a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561141757611416611535565b5b828201905092915050565b600061142d8261144a565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611492578082015181840152602081019050611477565b838111156114a1576000848401525b50505050565b60006114b28261146a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156114e5576114e4611535565b5b600182019050919050565b6000819050919050565b6000819050919050565b600061150f8261146a565b915061151a8361146a565b92508261152a57611529611564565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204c494e4b0000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c00600082015250565b6116da81611422565b81146116e557600080fd5b50565b6116f181611434565b81146116fc57600080fd5b50565b61170881611440565b811461171357600080fd5b50565b61171f8161146a565b811461172a57600080fd5b5056fea2646970667358221220b053594a04445aa38b2fabd95ee3a604008769103b1be7ae2f8cbba80f59afa964736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806393efd6f2116100ad578063d79b24c011610071578063d79b24c0146102ed578063dbdff2c11461030b578063dc0ae69314610329578063e90ebef714610347578063f2fde38b146103655761012c565b806393efd6f21461024757806394985ddd1461026557806399ba1e19146102815780639b5e4dcd1461029f578063a2fb1175146102bd5761012c565b806371712236116100f4578063717122361461019f5780637ff045f3146101bd578063874b3afc146101db5780638b44a7191461020b5780638da5cb5b146102295761012c565b8063037bee4d146101315780630ff1662e1461013b578063125f897414610159578063276801ec14610177578063715018a614610195575b600080fd5b610139610381565b005b61014361059d565b6040516101509190611322565b60405180910390f35b6101616105a3565b60405161016e9190611322565b60405180910390f35b61017f6105a9565b60405161018c9190611322565b60405180910390f35b61019d6105af565b005b6101a7610637565b6040516101b49190611322565b60405180910390f35b6101c561063d565b6040516101d29190611322565b60405180910390f35b6101f560048036038101906101f09190610f8d565b610643565b60405161020291906111f7565b60405180910390f35b610213610795565b6040516102209190611322565b60405180910390f35b61023161079b565b60405161023e919061119e565b60405180910390f35b61024f6107c5565b60405161025c9190611322565b60405180910390f35b61027f600480360381019061027a9190610ef3565b6107cb565b005b610289610867565b6040516102969190611322565b60405180910390f35b6102a761086d565b6040516102b49190611322565b60405180910390f35b6102d760048036038101906102d29190610f33565b610873565b6040516102e49190611322565b60405180910390f35b6102f5610897565b6040516103029190611322565b60405180910390f35b61031361089d565b6040516103209190611219565b60405180910390f35b610331610a1b565b60405161033e9190611322565b60405180910390f35b61034f610a21565b60405161035c9190611322565b60405180910390f35b61037f600480360381019061037a9190610e99565b610a27565b005b610389610b1f565b73ffffffffffffffffffffffffffffffffffffffff166103a761079b565b73ffffffffffffffffffffffffffffffffffffffff16146103fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f4906112e2565b60405180910390fd5b61040a600554600a610643565b6006908051906020019061041f929190610dc6565b50600660008154811061043557610434611593565b5b9060005260206000200154600781905550600660018154811061045b5761045a611593565b5b9060005260206000200154600881905550600660028154811061048157610480611593565b5b906000526020600020015460098190555060066003815481106104a7576104a6611593565b5b9060005260206000200154600a8190555060066004815481106104cd576104cc611593565b5b9060005260206000200154600b8190555060066005815481106104f3576104f2611593565b5b9060005260206000200154600c819055506006808154811061051857610517611593565b5b9060005260206000200154600d81905550600660078154811061053e5761053d611593565b5b9060005260206000200154600e81905550600660088154811061056457610563611593565b5b9060005260206000200154600f81905550600660098154811061058a57610589611593565b5b9060005260206000200154601081905550565b60105481565b60045481565b60055481565b6105b7610b1f565b73ffffffffffffffffffffffffffffffffffffffff166105d561079b565b73ffffffffffffffffffffffffffffffffffffffff161461062b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610622906112e2565b60405180910390fd5b6106356000610b27565b565b600c5481565b60095481565b606061064d610b1f565b73ffffffffffffffffffffffffffffffffffffffff1661066b61079b565b73ffffffffffffffffffffffffffffffffffffffff16146106c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b8906112e2565b60405180910390fd5b8167ffffffffffffffff8111156106db576106da6115c2565b5b6040519080825280602002602001820160405280156107095781602001602082028036833780820191505090505b50905060005b8281101561078e576001600454858360405160200161072f92919061133d565b6040516020818303038152906040528051906020012060001c6107529190611504565b61075c91906113cc565b82828151811061076f5761076e611593565b5b6020026020010181815250508080610786906114a7565b91505061070f565b5092915050565b600a5481565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b7f0000000000000000000000003d2341adb2d31f1c5530cdc622016af293177ae073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085090611302565b60405180910390fd5b6108638282610bed565b5050565b600b5481565b600f5481565b6006818154811061088357600080fd5b906000526020600020016000915090505481565b60085481565b60006108a7610b1f565b73ffffffffffffffffffffffffffffffffffffffff166108c561079b565b73ffffffffffffffffffffffffffffffffffffffff161461091b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610912906112e2565b60405180910390fd5b6003547f000000000000000000000000b0897686c545045afc77cf20ec7a532e3120e0f173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610977919061119e565b60206040518083038186803b15801561098f57600080fd5b505afa1580156109a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c79190610f60565b1015610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff906112c2565b60405180910390fd5b610a16600254600354610bf8565b905090565b600d5481565b60075481565b610a2f610b1f565b73ffffffffffffffffffffffffffffffffffffffff16610a4d61079b565b73ffffffffffffffffffffffffffffffffffffffff1614610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a906112e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a906112a2565b60405180910390fd5b610b1c81610b27565b50565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806005819055505050565b60007f000000000000000000000000b0897686c545045afc77cf20ec7a532e3120e0f173ffffffffffffffffffffffffffffffffffffffff16634000aea07f0000000000000000000000003d2341adb2d31f1c5530cdc622016af293177ae084866000604051602001610c6c929190611234565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401610c99939291906111b9565b602060405180830381600087803b158015610cb357600080fd5b505af1158015610cc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ceb9190610ec6565b506000610d0d8460003060008089815260200190815260200160002054610d57565b9050600160008086815260200190815260200160002054610d2e91906113cc565b60008086815260200190815260200160002081905550610d4e8482610d93565b91505092915050565b600084848484604051602001610d70949392919061125d565b6040516020818303038152906040528051906020012060001c9050949350505050565b60008282604051602001610da8929190611172565b60405160208183030381529060405280519060200120905092915050565b828054828255906000526020600020908101928215610e02579160200282015b82811115610e01578251825591602001919060010190610de6565b5b509050610e0f9190610e13565b5090565b5b80821115610e2c576000816000905550600101610e14565b5090565b600081359050610e3f816116d1565b92915050565b600081519050610e54816116e8565b92915050565b600081359050610e69816116ff565b92915050565b600081359050610e7e81611716565b92915050565b600081519050610e9381611716565b92915050565b600060208284031215610eaf57610eae6115f1565b5b6000610ebd84828501610e30565b91505092915050565b600060208284031215610edc57610edb6115f1565b5b6000610eea84828501610e45565b91505092915050565b60008060408385031215610f0a57610f096115f1565b5b6000610f1885828601610e5a565b9250506020610f2985828601610e6f565b9150509250929050565b600060208284031215610f4957610f486115f1565b5b6000610f5784828501610e6f565b91505092915050565b600060208284031215610f7657610f756115f1565b5b6000610f8484828501610e84565b91505092915050565b60008060408385031215610fa457610fa36115f1565b5b6000610fb285828601610e6f565b9250506020610fc385828601610e6f565b9150509250929050565b6000610fd9838361113d565b60208301905092915050565b610fee81611422565b82525050565b6000610fff82611376565b6110098185611399565b935061101483611366565b8060005b8381101561104557815161102c8882610fcd565b97506110378361138c565b925050600181019050611018565b5085935050505092915050565b61105b81611440565b82525050565b61107261106d82611440565b6114f0565b82525050565b600061108382611381565b61108d81856113aa565b935061109d818560208601611474565b6110a6816115f6565b840191505092915050565b60006110be6026836113bb565b91506110c982611607565b604082019050919050565b60006110e1600f836113bb565b91506110ec82611656565b602082019050919050565b60006111046020836113bb565b915061110f8261167f565b602082019050919050565b6000611127601f836113bb565b9150611132826116a8565b602082019050919050565b6111468161146a565b82525050565b6111558161146a565b82525050565b61116c6111678261146a565b6114fa565b82525050565b600061117e8285611061565b60208201915061118e828461115b565b6020820191508190509392505050565b60006020820190506111b36000830184610fe5565b92915050565b60006060820190506111ce6000830186610fe5565b6111db602083018561114c565b81810360408301526111ed8184611078565b9050949350505050565b600060208201905081810360008301526112118184610ff4565b905092915050565b600060208201905061122e6000830184611052565b92915050565b60006040820190506112496000830185611052565b611256602083018461114c565b9392505050565b60006080820190506112726000830187611052565b61127f602083018661114c565b61128c6040830185610fe5565b611299606083018461114c565b95945050505050565b600060208201905081810360008301526112bb816110b1565b9050919050565b600060208201905081810360008301526112db816110d4565b9050919050565b600060208201905081810360008301526112fb816110f7565b9050919050565b6000602082019050818103600083015261131b8161111a565b9050919050565b6000602082019050611337600083018461114c565b92915050565b6000604082019050611352600083018561114c565b61135f602083018461114c565b9392505050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006113d78261146a565b91506113e28361146a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561141757611416611535565b5b828201905092915050565b600061142d8261144a565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611492578082015181840152602081019050611477565b838111156114a1576000848401525b50505050565b60006114b28261146a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156114e5576114e4611535565b5b600182019050919050565b6000819050919050565b6000819050919050565b600061150f8261146a565b915061151a8361146a565b92508261152a57611529611564565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204c494e4b0000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c00600082015250565b6116da81611422565b81146116e557600080fd5b50565b6116f181611434565b81146116fc57600080fd5b50565b61170881611440565b811461171357600080fd5b50565b61171f8161146a565b811461172a57600080fd5b5056fea2646970667358221220b053594a04445aa38b2fabd95ee3a604008769103b1be7ae2f8cbba80f59afa964736f6c63430008070033

Deployed Bytecode Sourcemap

19289:2940:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21784:440;;;:::i;:::-;;19817:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19417:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19464:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5576:103;;;:::i;:::-;;19688:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19591:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21424:352;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19624:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4925:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19752:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18999:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19656:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19785;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19499:21;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19560:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20937:204;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19719:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19529:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5834:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21784:440;5156:12;:10;:12::i;:::-;5145:23;;:7;:5;:7::i;:::-;:23;;;5137:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21850:22:::1;21857:11;;21869:2;21850:6;:22::i;:::-;21840:7;:32;;;;;;;;;;;;:::i;:::-;;21895:7;21903:1;21895:10;;;;;;;;:::i;:::-;;;;;;;;;;21883:9;:22;;;;21928:7;21936:1;21928:10;;;;;;;;:::i;:::-;;;;;;;;;;21916:9;:22;;;;21963:7;21971:1;21963:10;;;;;;;;:::i;:::-;;;;;;;;;;21949:11;:24;;;;21997:7;22005:1;21997:10;;;;;;;;:::i;:::-;;;;;;;;;;21984;:23;;;;22031:7;22039:1;22031:10;;;;;;;;:::i;:::-;;;;;;;;;;22018;:23;;;;22064:7;22072:1;22064:10;;;;;;;;:::i;:::-;;;;;;;;;;22052:9;:22;;;;22099:7;22107:1:::0;22099:10:::1;;;;;;;;:::i;:::-;;;;;;;;;;22085:11;:24;;;;22134:7;22142:1;22134:10;;;;;;;;:::i;:::-;;;;;;;;;;22120:11;:24;;;;22168:7;22176:1;22168:10;;;;;;;;:::i;:::-;;;;;;;;;;22155;:23;;;;22201:7;22209:1;22201:10;;;;;;;;:::i;:::-;;;;;;;;;;22189:9;:22;;;;21784:440::o:0;19817:24::-;;;;:::o;19417:34::-;;;;:::o;19464:26::-;;;;:::o;5576:103::-;5156:12;:10;:12::i;:::-;5145:23;;:7;:5;:7::i;:::-;:23;;;5137:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5641:30:::1;5668:1;5641:18;:30::i;:::-;5576:103::o:0;19688:24::-;;;;:::o;19591:26::-;;;;:::o;21424:352::-;21503:31;5156:12;:10;:12::i;:::-;5145:23;;:7;:5;:7::i;:::-;:23;;;5137:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21578:1:::1;21564:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21547:33;;21596:9;21591:146;21615:1;21611;:5;21591:146;;;21724:1;21708:12;;21688:11;21701:1;21677:26;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21667:37;;;;;;21659:46;;:61;;;;:::i;:::-;21658:67;;;;:::i;:::-;21638:14;21653:1;21638:17;;;;;;;;:::i;:::-;;;;;;;:87;;;::::0;::::1;21618:3;;;;;:::i;:::-;;;;21591:146;;;;21424:352:::0;;;;:::o;19624:25::-;;;;:::o;4925:87::-;4971:7;4998:6;;;;;;;;;;;4991:13;;4925:87;:::o;19752:26::-;;;;:::o;18999:210::-;19106:14;19092:28;;:10;:28;;;19084:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;19163:40;19181:9;19192:10;19163:17;:40::i;:::-;18999:210;;:::o;19656:25::-;;;;:::o;19785:::-;;;;:::o;19499:21::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19560:24::-;;;;:::o;20937:204::-;20990:17;5156:12;:10;:12::i;:::-;5145:23;;:7;:5;:7::i;:::-;:23;;;5137:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21061:3:::1;;21028:4;:14;;;21051:4;21028:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;21020:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;21102:31;21120:7;;21129:3;;21102:17;:31::i;:::-;21095:38;;20937:204:::0;:::o;19719:26::-;;;;:::o;19529:24::-;;;;:::o;5834:201::-;5156:12;:10;:12::i;:::-;5145:23;;:7;:5;:7::i;:::-;:23;;;5137:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5943:1:::1;5923:22;;:8;:22;;;;5915:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5999:28;6018:8;5999:18;:28::i;:::-;5834:201:::0;:::o;3645:98::-;3698:7;3725:10;3718:17;;3645:98;:::o;6195:191::-;6269:16;6288:6;;;;;;;;;;;6269:25;;6314:8;6305:6;;:17;;;;;;;;;;;;;;;;;;6369:8;6338:40;;6359:8;6338:40;;;;;;;;;;;;6258:128;6195:191;:::o;21217:127::-;21326:10;21312:11;:24;;;;21217:127;;:::o;17116:1034::-;17193:17;17219:4;:20;;;17240:14;17256:4;17273:8;15946:1;17262:43;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17219:87;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17541:15;17559:82;17576:8;15946:1;17617:4;17624:6;:16;17631:8;17624:16;;;;;;;;;;;;17559;:82::i;:::-;17541:100;;18097:1;18078:6;:16;18085:8;18078:16;;;;;;;;;;;;:20;;;;:::i;:::-;18059:6;:16;18066:8;18059:16;;;;;;;;;;;:39;;;;18112:32;18126:8;18136:7;18112:13;:32::i;:::-;18105:39;;;17116:1034;;;;:::o;8469:247::-;8616:7;8668:8;8678:9;8689:10;8701:6;8657:51;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8647:62;;;;;;8639:71;;8632:78;;8469:247;;;;;;:::o;9107:168::-;9194:7;9244:8;9254:13;9227:41;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9217:52;;;;;;9210:59;;9107:168;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:137::-;206:5;237:6;231:13;222:22;;253:30;277:5;253:30;:::i;:::-;152:137;;;;:::o;295:139::-;341:5;379:6;366:20;357:29;;395:33;422:5;395:33;:::i;:::-;295:139;;;;:::o;440:::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:143::-;642:5;673:6;667:13;658:22;;689:33;716:5;689:33;:::i;:::-;585:143;;;;:::o;734:329::-;793:6;842:2;830:9;821:7;817:23;813:32;810:119;;;848:79;;:::i;:::-;810:119;968:1;993:53;1038:7;1029:6;1018:9;1014:22;993:53;:::i;:::-;983:63;;939:117;734:329;;;;:::o;1069:345::-;1136:6;1185:2;1173:9;1164:7;1160:23;1156:32;1153:119;;;1191:79;;:::i;:::-;1153:119;1311:1;1336:61;1389:7;1380:6;1369:9;1365:22;1336:61;:::i;:::-;1326:71;;1282:125;1069:345;;;;:::o;1420:474::-;1488:6;1496;1545:2;1533:9;1524:7;1520:23;1516:32;1513:119;;;1551:79;;:::i;:::-;1513:119;1671:1;1696:53;1741:7;1732:6;1721:9;1717:22;1696:53;:::i;:::-;1686:63;;1642:117;1798:2;1824:53;1869:7;1860:6;1849:9;1845:22;1824:53;:::i;:::-;1814:63;;1769:118;1420:474;;;;;:::o;1900:329::-;1959:6;2008:2;1996:9;1987:7;1983:23;1979:32;1976:119;;;2014:79;;:::i;:::-;1976:119;2134:1;2159:53;2204:7;2195:6;2184:9;2180:22;2159:53;:::i;:::-;2149:63;;2105:117;1900:329;;;;:::o;2235:351::-;2305:6;2354:2;2342:9;2333:7;2329:23;2325:32;2322:119;;;2360:79;;:::i;:::-;2322:119;2480:1;2505:64;2561:7;2552:6;2541:9;2537:22;2505:64;:::i;:::-;2495:74;;2451:128;2235:351;;;;:::o;2592:474::-;2660:6;2668;2717:2;2705:9;2696:7;2692:23;2688:32;2685:119;;;2723:79;;:::i;:::-;2685:119;2843:1;2868:53;2913:7;2904:6;2893:9;2889:22;2868:53;:::i;:::-;2858:63;;2814:117;2970:2;2996:53;3041:7;3032:6;3021:9;3017:22;2996:53;:::i;:::-;2986:63;;2941:118;2592:474;;;;;:::o;3072:179::-;3141:10;3162:46;3204:3;3196:6;3162:46;:::i;:::-;3240:4;3235:3;3231:14;3217:28;;3072:179;;;;:::o;3257:118::-;3344:24;3362:5;3344:24;:::i;:::-;3339:3;3332:37;3257:118;;:::o;3411:732::-;3530:3;3559:54;3607:5;3559:54;:::i;:::-;3629:86;3708:6;3703:3;3629:86;:::i;:::-;3622:93;;3739:56;3789:5;3739:56;:::i;:::-;3818:7;3849:1;3834:284;3859:6;3856:1;3853:13;3834:284;;;3935:6;3929:13;3962:63;4021:3;4006:13;3962:63;:::i;:::-;3955:70;;4048:60;4101:6;4048:60;:::i;:::-;4038:70;;3894:224;3881:1;3878;3874:9;3869:14;;3834:284;;;3838:14;4134:3;4127:10;;3535:608;;;3411:732;;;;:::o;4149:118::-;4236:24;4254:5;4236:24;:::i;:::-;4231:3;4224:37;4149:118;;:::o;4273:157::-;4378:45;4398:24;4416:5;4398:24;:::i;:::-;4378:45;:::i;:::-;4373:3;4366:58;4273:157;;:::o;4436:360::-;4522:3;4550:38;4582:5;4550:38;:::i;:::-;4604:70;4667:6;4662:3;4604:70;:::i;:::-;4597:77;;4683:52;4728:6;4723:3;4716:4;4709:5;4705:16;4683:52;:::i;:::-;4760:29;4782:6;4760:29;:::i;:::-;4755:3;4751:39;4744:46;;4526:270;4436:360;;;;:::o;4802:366::-;4944:3;4965:67;5029:2;5024:3;4965:67;:::i;:::-;4958:74;;5041:93;5130:3;5041:93;:::i;:::-;5159:2;5154:3;5150:12;5143:19;;4802:366;;;:::o;5174:::-;5316:3;5337:67;5401:2;5396:3;5337:67;:::i;:::-;5330:74;;5413:93;5502:3;5413:93;:::i;:::-;5531:2;5526:3;5522:12;5515:19;;5174:366;;;:::o;5546:::-;5688:3;5709:67;5773:2;5768:3;5709:67;:::i;:::-;5702:74;;5785:93;5874:3;5785:93;:::i;:::-;5903:2;5898:3;5894:12;5887:19;;5546:366;;;:::o;5918:::-;6060:3;6081:67;6145:2;6140:3;6081:67;:::i;:::-;6074:74;;6157:93;6246:3;6157:93;:::i;:::-;6275:2;6270:3;6266:12;6259:19;;5918:366;;;:::o;6290:108::-;6367:24;6385:5;6367:24;:::i;:::-;6362:3;6355:37;6290:108;;:::o;6404:118::-;6491:24;6509:5;6491:24;:::i;:::-;6486:3;6479:37;6404:118;;:::o;6528:157::-;6633:45;6653:24;6671:5;6653:24;:::i;:::-;6633:45;:::i;:::-;6628:3;6621:58;6528:157;;:::o;6691:397::-;6831:3;6846:75;6917:3;6908:6;6846:75;:::i;:::-;6946:2;6941:3;6937:12;6930:19;;6959:75;7030:3;7021:6;6959:75;:::i;:::-;7059:2;7054:3;7050:12;7043:19;;7079:3;7072:10;;6691:397;;;;;:::o;7094:222::-;7187:4;7225:2;7214:9;7210:18;7202:26;;7238:71;7306:1;7295:9;7291:17;7282:6;7238:71;:::i;:::-;7094:222;;;;:::o;7322:529::-;7489:4;7527:2;7516:9;7512:18;7504:26;;7540:71;7608:1;7597:9;7593:17;7584:6;7540:71;:::i;:::-;7621:72;7689:2;7678:9;7674:18;7665:6;7621:72;:::i;:::-;7740:9;7734:4;7730:20;7725:2;7714:9;7710:18;7703:48;7768:76;7839:4;7830:6;7768:76;:::i;:::-;7760:84;;7322:529;;;;;;:::o;7857:373::-;8000:4;8038:2;8027:9;8023:18;8015:26;;8087:9;8081:4;8077:20;8073:1;8062:9;8058:17;8051:47;8115:108;8218:4;8209:6;8115:108;:::i;:::-;8107:116;;7857:373;;;;:::o;8236:222::-;8329:4;8367:2;8356:9;8352:18;8344:26;;8380:71;8448:1;8437:9;8433:17;8424:6;8380:71;:::i;:::-;8236:222;;;;:::o;8464:332::-;8585:4;8623:2;8612:9;8608:18;8600:26;;8636:71;8704:1;8693:9;8689:17;8680:6;8636:71;:::i;:::-;8717:72;8785:2;8774:9;8770:18;8761:6;8717:72;:::i;:::-;8464:332;;;;;:::o;8802:553::-;8979:4;9017:3;9006:9;9002:19;8994:27;;9031:71;9099:1;9088:9;9084:17;9075:6;9031:71;:::i;:::-;9112:72;9180:2;9169:9;9165:18;9156:6;9112:72;:::i;:::-;9194;9262:2;9251:9;9247:18;9238:6;9194:72;:::i;:::-;9276;9344:2;9333:9;9329:18;9320:6;9276:72;:::i;:::-;8802:553;;;;;;;:::o;9361:419::-;9527:4;9565:2;9554:9;9550:18;9542:26;;9614:9;9608:4;9604:20;9600:1;9589:9;9585:17;9578:47;9642:131;9768:4;9642:131;:::i;:::-;9634:139;;9361:419;;;:::o;9786:::-;9952:4;9990:2;9979:9;9975:18;9967:26;;10039:9;10033:4;10029:20;10025:1;10014:9;10010:17;10003:47;10067:131;10193:4;10067:131;:::i;:::-;10059:139;;9786:419;;;:::o;10211:::-;10377:4;10415:2;10404:9;10400:18;10392:26;;10464:9;10458:4;10454:20;10450:1;10439:9;10435:17;10428:47;10492:131;10618:4;10492:131;:::i;:::-;10484:139;;10211:419;;;:::o;10636:::-;10802:4;10840:2;10829:9;10825:18;10817:26;;10889:9;10883:4;10879:20;10875:1;10864:9;10860:17;10853:47;10917:131;11043:4;10917:131;:::i;:::-;10909:139;;10636:419;;;:::o;11061:222::-;11154:4;11192:2;11181:9;11177:18;11169:26;;11205:71;11273:1;11262:9;11258:17;11249:6;11205:71;:::i;:::-;11061:222;;;;:::o;11289:332::-;11410:4;11448:2;11437:9;11433:18;11425:26;;11461:71;11529:1;11518:9;11514:17;11505:6;11461:71;:::i;:::-;11542:72;11610:2;11599:9;11595:18;11586:6;11542:72;:::i;:::-;11289:332;;;;;:::o;11708:132::-;11775:4;11798:3;11790:11;;11828:4;11823:3;11819:14;11811:22;;11708:132;;;:::o;11846:114::-;11913:6;11947:5;11941:12;11931:22;;11846:114;;;:::o;11966:98::-;12017:6;12051:5;12045:12;12035:22;;11966:98;;;:::o;12070:113::-;12140:4;12172;12167:3;12163:14;12155:22;;12070:113;;;:::o;12189:184::-;12288:11;12322:6;12317:3;12310:19;12362:4;12357:3;12353:14;12338:29;;12189:184;;;;:::o;12379:168::-;12462:11;12496:6;12491:3;12484:19;12536:4;12531:3;12527:14;12512:29;;12379:168;;;;:::o;12553:169::-;12637:11;12671:6;12666:3;12659:19;12711:4;12706:3;12702:14;12687:29;;12553:169;;;;:::o;12728:305::-;12768:3;12787:20;12805:1;12787:20;:::i;:::-;12782:25;;12821:20;12839:1;12821:20;:::i;:::-;12816:25;;12975:1;12907:66;12903:74;12900:1;12897:81;12894:107;;;12981:18;;:::i;:::-;12894:107;13025:1;13022;13018:9;13011:16;;12728:305;;;;:::o;13039:96::-;13076:7;13105:24;13123:5;13105:24;:::i;:::-;13094:35;;13039:96;;;:::o;13141:90::-;13175:7;13218:5;13211:13;13204:21;13193:32;;13141:90;;;:::o;13237:77::-;13274:7;13303:5;13292:16;;13237:77;;;:::o;13320:126::-;13357:7;13397:42;13390:5;13386:54;13375:65;;13320:126;;;:::o;13452:77::-;13489:7;13518:5;13507:16;;13452:77;;;:::o;13535:307::-;13603:1;13613:113;13627:6;13624:1;13621:13;13613:113;;;13712:1;13707:3;13703:11;13697:18;13693:1;13688:3;13684:11;13677:39;13649:2;13646:1;13642:10;13637:15;;13613:113;;;13744:6;13741:1;13738:13;13735:101;;;13824:1;13815:6;13810:3;13806:16;13799:27;13735:101;13584:258;13535:307;;;:::o;13848:233::-;13887:3;13910:24;13928:5;13910:24;:::i;:::-;13901:33;;13956:66;13949:5;13946:77;13943:103;;;14026:18;;:::i;:::-;13943:103;14073:1;14066:5;14062:13;14055:20;;13848:233;;;:::o;14087:79::-;14126:7;14155:5;14144:16;;14087:79;;;:::o;14172:::-;14211:7;14240:5;14229:16;;14172:79;;;:::o;14257:176::-;14289:1;14306:20;14324:1;14306:20;:::i;:::-;14301:25;;14340:20;14358:1;14340:20;:::i;:::-;14335:25;;14379:1;14369:35;;14384:18;;:::i;:::-;14369:35;14425:1;14422;14418:9;14413:14;;14257:176;;;;:::o;14439:180::-;14487:77;14484:1;14477:88;14584:4;14581:1;14574:15;14608:4;14605:1;14598:15;14625:180;14673:77;14670:1;14663:88;14770:4;14767:1;14760:15;14794:4;14791:1;14784:15;14811:180;14859:77;14856:1;14849:88;14956:4;14953:1;14946:15;14980:4;14977:1;14970:15;14997:180;15045:77;15042:1;15035:88;15142:4;15139:1;15132:15;15166:4;15163:1;15156:15;15306:117;15415:1;15412;15405:12;15429:102;15470:6;15521:2;15517:7;15512:2;15505:5;15501:14;15497:28;15487:38;;15429:102;;;:::o;15537:225::-;15677:34;15673:1;15665:6;15661:14;15654:58;15746:8;15741:2;15733:6;15729:15;15722:33;15537:225;:::o;15768:165::-;15908:17;15904:1;15896:6;15892:14;15885:41;15768:165;:::o;15939:182::-;16079:34;16075:1;16067:6;16063:14;16056:58;15939:182;:::o;16127:181::-;16267:33;16263:1;16255:6;16251:14;16244:57;16127:181;:::o;16314:122::-;16387:24;16405:5;16387:24;:::i;:::-;16380:5;16377:35;16367:63;;16426:1;16423;16416:12;16367:63;16314:122;:::o;16442:116::-;16512:21;16527:5;16512:21;:::i;:::-;16505:5;16502:32;16492:60;;16548:1;16545;16538:12;16492:60;16442:116;:::o;16564:122::-;16637:24;16655:5;16637:24;:::i;:::-;16630:5;16627:35;16617:63;;16676:1;16673;16666:12;16617:63;16564:122;:::o;16692:::-;16765:24;16783:5;16765:24;:::i;:::-;16758:5;16755:35;16745:63;;16804:1;16801;16794:12;16745:63;16692:122;:::o

Swarm Source

ipfs://b053594a04445aa38b2fabd95ee3a604008769103b1be7ae2f8cbba80f59afa9

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.