Overview
Max Total Supply
2,329,121.429235137611384423 xBOO
Holders
9,309 ( 0.011%)
Market
Price
$0.00 @ 0.000000 FTM
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 xBOOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
BooMirrorWorld
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2021-06-11 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.12; /* * @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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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 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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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 * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 to 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 Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // BooMirrorWorld is the place where boo's live to create xBOO. Grim becomes her evil half, ace // This contract handles swapping to and from xBoo, SpookySwap's staking token. contract BooMirrorWorld is ERC20("Boo MirrorWorld", "xBOO") { using SafeMath for uint256; IERC20 public boo; // Define the Boo token contract constructor(IERC20 _boo) public { boo = _boo; } // Locks Boo and mints xBoo function enter(uint256 _amount) public { // Gets the amount of Boo locked in the contract uint256 totalBoo = boo.balanceOf(address(this)); // Gets the amount of xBoo in existence uint256 totalShares = totalSupply(); // If no xBoo exists, mint it 1:1 to the amount put in if (totalShares == 0 || totalBoo == 0) { mint(msg.sender, _amount); } // Calculate and mint the amount of xBoo the Boo is worth. The ratio will change overtime, as xBoo is burned/minted and Boo deposited + gained from fees / withdrawn. else { uint256 what = _amount.mul(totalShares).div(totalBoo); mint(msg.sender, what); } // Lock the Boo in the contract boo.transferFrom(msg.sender, address(this), _amount); } // Unlocks the staked + gained Boo and burns xBoo function leave(uint256 _share) public { // Gets the amount of xBoo in existence uint256 totalShares = totalSupply(); // Calculates the amount of Boo the xBoo is worth uint256 what = _share.mul(boo.balanceOf(address(this))).div(totalShares); burn(msg.sender, _share); boo.transfer(msg.sender, what); } // returns the total amount of BOO an address has in the contract including fees earned function BOOBalance(address _account) external view returns (uint256 booAmount_) { uint256 xBOOAmount = balanceOf(_account); uint256 totalxBOO = totalSupply(); booAmount_ = xBOOAmount.mul(boo.balanceOf(address(this))).div(totalxBOO); } // returns how much BOO someone gets for redeeming xBOO function xBOOForBOO(uint256 _xBOOAmount) external view returns (uint256 booAmount_) { uint256 totalxBOO = totalSupply(); booAmount_ = _xBOOAmount.mul(boo.balanceOf(address(this))).div(totalxBOO); } // returns how much xBOO someone gets for depositing BOO function BOOForxBOO(uint256 _booAmount) external view returns (uint256 xBOOAmount_) { uint256 totalBoo = boo.balanceOf(address(this)); uint256 totalxBOO = totalSupply(); if (totalxBOO == 0 || totalBoo == 0) { xBOOAmount_ = _booAmount; } else { xBOOAmount_ = _booAmount.mul(totalxBOO).div(totalBoo); } } // Copied and modified from YAM code: // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol // Which is copied and modified from COMPOUND: // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol // A record of each accounts delegate mapping (address => address) internal _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); // A record of states for signing / validating signatures mapping (address => uint) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); function burn(address _from, uint256 _amount) private { _burn(_from, _amount); _moveDelegates(_delegates[_from], address(0), _amount); } function mint(address recipient, uint256 _amount) private { _mint(recipient, _amount); _initDelegates(recipient); _moveDelegates(address(0), _delegates[recipient], _amount); } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { bool result = super.transferFrom(sender, recipient, amount); // Call parent hook _initDelegates(recipient); _moveDelegates(_delegates[sender], _delegates[recipient], amount); return result; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { bool result = super.transfer(recipient, amount); // Call parent hook _initDelegates(recipient); _moveDelegates(_delegates[_msgSender()], _delegates[recipient], amount); return result; } // initialize delegates mapping of recipient if not already function _initDelegates(address recipient) internal { if(_delegates[recipient] == address(0)) { _delegates[recipient] = recipient; } } /** * @param delegator The address to get delegates for */ function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode( DELEGATION_TYPEHASH, delegatee, nonce, expiry ) ); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", domainSeparator, structHash ) ); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "BOO::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "BOO::delegateBySig: invalid nonce"); require(block.timestamp <= expiry, "BOO::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) external view returns (uint256) { require(blockNumber < block.number, "BOO::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying BOOs (not scaled); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld - amount; _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld + amount; _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "BOO::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() internal view returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_boo","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"BOOBalance","outputs":[{"internalType":"uint256","name":"booAmount_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_booAmount","type":"uint256"}],"name":"BOOForxBOO","outputs":[{"internalType":"uint256","name":"xBOOAmount_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boo","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"enter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"leave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_xBOOAmount","type":"uint256"}],"name":"xBOOForBOO","outputs":[{"internalType":"uint256","name":"booAmount_","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002a7038038062002a70833981810160405260208110156200003757600080fd5b5051604080518082018252600f81526e109bdbc8135a5c9c9bdc95dbdc9b19608a1b60208281019182528351808501909452600484526378424f4f60e01b9084015281519192916200008c91600391620000dc565b508051620000a2906004906020840190620000dc565b5050600580546001600160a01b0390931661010002610100600160a81b031960ff1990941660121793909316929092179091555062000178565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200011f57805160ff19168380011785556200014f565b828001600101855582156200014f579182015b828111156200014f57825182559160200191906001019062000132565b506200015d92915062000161565b5090565b5b808211156200015d576000815560010162000162565b6128e880620001886000396000f3fe608060405234801561001057600080fd5b50600436106101b95760003560e01c806370a08231116100f9578063b4b5ea5711610097578063c3cda52011610071578063c3cda5201461061c578063dd62ed3e14610670578063e7a324dc146106ab578063f1127ed8146106b3576101b9565b8063b4b5ea5714610599578063bbe9b09e146105cc578063bc3bcb4f146105e9576101b9565b806395d89b41116100d357806395d89b4114610502578063a457c2d71461050a578063a59f3e0c14610543578063a9059cbb14610560576101b9565b806370a0823114610463578063782d6fe1146104965780637ecebe00146104cf576101b9565b80633950935111610166578063587cde1e11610140578063587cde1e146103925780635c19a95c146103c557806367dfd4c9146103fa5780636fcfff4514610417576101b9565b8063395093511461030b57806343b0ff51146103445780634b3df20014610361576101b9565b806320606b701161019757806320606b70146102a257806323b872dd146102aa578063313ce567146102ed576101b9565b806306fdde03146101be578063095ea7b31461023b57806318160ddd14610288575b600080fd5b6101c6610712565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102005781810151838201526020016101e8565b50505050905090810190601f16801561022d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102746004803603604081101561025157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356107c6565b604080519115158252519081900360200190f35b6102906107e4565b60408051918252519081900360200190f35b6102906107ea565b610274600480360360608110156102c057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135909116906040013561080e565b6102f561086e565b6040805160ff9092168252519081900360200190f35b6102746004803603604081101561032157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610877565b6102906004803603602081101561035a57600080fd5b50356108d7565b6103696109b4565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b610369600480360360208110156103a857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166109d5565b6103f8600480360360208110156103db57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610a00565b005b6103f86004803603602081101561041057600080fd5b5035610a0d565b61044a6004803603602081101561042d57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610b66565b6040805163ffffffff9092168252519081900360200190f35b6102906004803603602081101561047957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610b7e565b610290600480360360408110156104ac57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610ba6565b610290600480360360208110156104e557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610e70565b6101c6610e82565b6102746004803603604081101561052057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610f01565b6103f86004803603602081101561055957600080fd5b5035610f76565b6102746004803603604081101561057657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356110e7565b610290600480360360208110156105af57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611156565b610290600480360360208110156105e257600080fd5b50356111f2565b610290600480360360208110156105ff57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166112e8565b6103f8600480360360c081101561063257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060208101359060408101359060ff6060820135169060808101359060a001356113c5565b6102906004803603604081101561068657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611704565b61029061173c565b6106f2600480360360408110156106c957600080fd5b50803573ffffffffffffffffffffffffffffffffffffffff16906020013563ffffffff16611760565b6040805163ffffffff909316835260208301919091528051918290030190f35b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107bc5780601f10610791576101008083540402835291602001916107bc565b820191906000526020600020905b81548152906001019060200180831161079f57829003601f168201915b5050505050905090565b60006107da6107d361178d565b8484611791565b5060015b92915050565b60025490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60008061081c8585856118d8565b905061082784611974565b73ffffffffffffffffffffffffffffffffffffffff808616600090815260066020526040808220548784168352912054610866929182169116856119ef565b949350505050565b60055460ff1690565b60006107da61088461178d565b846108d2856001600061089561178d565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490611bbf565b611791565b6000806108e26107e4565b90506109ad816109a7600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561097457600080fd5b505afa158015610988573d6000803e3d6000fd5b505050506040513d602081101561099e57600080fd5b50518690611c33565b90611ca6565b9392505050565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff9081166000908152600660205260409020541690565b610a0a3382611ce8565b50565b6000610a176107e4565b90506000610aab826109a7600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561097457600080fd5b9050610ab73384611daf565b600554604080517fa9059cbb00000000000000000000000000000000000000000000000000000000815233600482015260248101849052905161010090920473ffffffffffffffffffffffffffffffffffffffff169163a9059cbb916044808201926020929091908290030181600087803b158015610b3557600080fd5b505af1158015610b49573d6000803e3d6000fd5b505050506040513d6020811015610b5f57600080fd5b5050505050565b60086020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6000438210610c00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806127176026913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205463ffffffff1680610c3b5760009150506107de565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860181168552925290912054168310610d005773ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff168352929052206001015490506107de565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260076020908152604080832083805290915290205463ffffffff16831015610d485760009150506107de565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff161115610e2c57600282820363ffffffff16048103610d98612672565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610e07576020015194506107de9350505050565b805163ffffffff16871115610e1e57819350610e25565b6001820392505b5050610d6e565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b60096020526000908152604090205481565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107bc5780601f10610791576101008083540402835291602001916107bc565b60006107da610f0e61178d565b846108d28560405180606001604052806025815260200161288e6025913960016000610f3861178d565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190611df0565b600554604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600092610100900473ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b158015610fec57600080fd5b505afa158015611000573d6000803e3d6000fd5b505050506040513d602081101561101657600080fd5b5051905060006110246107e4565b9050801580611031575081155b15611045576110403384611ea1565b611063565b6000611055836109a78685611c33565b90506110613382611ea1565b505b600554604080517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101869052905161010090920473ffffffffffffffffffffffffffffffffffffffff16916323b872dd916064808201926020929091908290030181600087803b158015610b3557600080fd5b6000806110f48484611ee6565b90506110ff84611974565b6109ad6006600061110e61178d565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120548983168252600690945291909120549181169116856119ef565b73ffffffffffffffffffffffffffffffffffffffff811660009081526008602052604081205463ffffffff168061118e5760006109ad565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8601168452909152902060010154915050919050565b600080600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561127e57600080fd5b505afa158015611292573d6000803e3d6000fd5b505050506040513d60208110156112a857600080fd5b5051905060006112b66107e4565b90508015806112c3575081155b156112d0578392506112e1565b6112de826109a78684611c33565b92505b5050919050565b6000806112f483610b7e565b905060006113006107e4565b90506112de816109a7600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561139257600080fd5b505afa1580156113a6573d6000803e3d6000fd5b505050506040513d60208110156113bc57600080fd5b50518590611c33565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8666113f0610712565b805190602001206113ff611efa565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c084015273ffffffffffffffffffffffffffffffffffffffff8b1660e084015261010083018a90526101208084018a905282518085039091018152610140840183528051908501207f19010000000000000000000000000000000000000000000000000000000000006101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a905261022286018990529351929650909492939092600192610242808401937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08301929081900390910190855afa158015611578573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061273d6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526009602052604090208054600181019091558914611694576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806127f16021913960400191505060405180910390fd5b874211156116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806128366025913960400191505060405180910390fd5b6116f7818b611ce8565b505050505b505050505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b3390565b73ffffffffffffffffffffffffffffffffffffffff83166117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806128126024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611869576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806126cf6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006118e5848484611efe565b61196a846118f161178d565b6108d2856040518060600160405280602881526020016127836028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526001602052604081209061193c61178d565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190611df0565b5060019392505050565b73ffffffffffffffffffffffffffffffffffffffff81811660009081526006602052604090205416610a0a5773ffffffffffffffffffffffffffffffffffffffff16600081815260066020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a2b5750600081115b15611bba5773ffffffffffffffffffffffffffffffffffffffff831615611af75773ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604081205463ffffffff169081611a85576000611ae2565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b9050828103611af3868484846120ce565b5050505b73ffffffffffffffffffffffffffffffffffffffff821615611bba5773ffffffffffffffffffffffffffffffffffffffff821660009081526008602052604081205463ffffffff169081611b4c576000611ba9565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b90508281016116fc858484846120ce565b505050565b6000828201838110156109ad57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611c42575060006107de565b82820282848281611c4f57fe5b04146109ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806127626021913960400191505060405180910390fd5b60006109ad83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122be565b73ffffffffffffffffffffffffffffffffffffffff80831660009081526006602052604081205490911690611d1c84610b7e565b73ffffffffffffffffffffffffffffffffffffffff85811660008181526006602052604080822080547fffffffffffffffffffffffff000000000000000000000000000000000000000016898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611da98284836119ef565b50505050565b611db9828261233d565b73ffffffffffffffffffffffffffffffffffffffff808316600090815260066020526040812054611dec921690836119ef565b5050565b60008184841115611e99576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e5e578181015183820152602001611e46565b50505050905090810190601f168015611e8b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b611eab8282612487565b611eb482611974565b73ffffffffffffffffffffffffffffffffffffffff808316600090815260066020526040812054611dec9216836119ef565b60006107da611ef361178d565b8484611efe565b4690565b73ffffffffffffffffffffffffffffffffffffffff8316611f6a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806127cc6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611fd6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061268a6023913960400191505060405180910390fd5b611fe1838383611bba565b61202b816040518060600160405280602681526020016126f16026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190611df0565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822093909355908416815220546120679082611bbf565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60006120f24360405180606001604052806033815260200161285b603391396125b8565b905060008463ffffffff16118015612166575073ffffffffffffffffffffffffffffffffffffffff8516600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8901811685529252909120548282169116145b156121ce5773ffffffffffffffffffffffffffffffffffffffff8516600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff89011684529091529020600101829055612267565b60408051808201825263ffffffff8084168252602080830186815273ffffffffffffffffffffffffffffffffffffffff8a166000818152600784528681208b861682528452868120955186549086167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000918216178755925160019687015590815260089092529390208054928801909116919092161790555b6040805184815260208101849052815173ffffffffffffffffffffffffffffffffffffffff8816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008183612327576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315611e5e578181015183820152602001611e46565b50600083858161233357fe5b0495945050505050565b73ffffffffffffffffffffffffffffffffffffffff82166123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806127ab6021913960400191505060405180910390fd5b6123b582600083611bba565b6123ff816040518060600160405280602281526020016126ad6022913973ffffffffffffffffffffffffffffffffffffffff85166000908152602081905260409020549190611df0565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020556002546124329082612630565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b73ffffffffffffffffffffffffffffffffffffffff821661250957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61251560008383611bba565b6002546125229082611bbf565b60025573ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260409020546125559082611bbf565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000816401000000008410612628576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315611e5e578181015183820152602001611e46565b509192915050565b60006109ad83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611df0565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365424f4f3a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564424f4f3a3a64656c656761746542795369673a20696e76616c6964207369676e6174757265536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373424f4f3a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373424f4f3a3a64656c656761746542795369673a207369676e61747572652065787069726564424f4f3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a8b76c0c48640c52a64c84eebc4a8f2b7cb692e977f3ee4ebb2795d3c5a1aa7b64736f6c634300060c0033000000000000000000000000841fad6eae12c286d1fd18d1d525dffa75c7effe
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101b95760003560e01c806370a08231116100f9578063b4b5ea5711610097578063c3cda52011610071578063c3cda5201461061c578063dd62ed3e14610670578063e7a324dc146106ab578063f1127ed8146106b3576101b9565b8063b4b5ea5714610599578063bbe9b09e146105cc578063bc3bcb4f146105e9576101b9565b806395d89b41116100d357806395d89b4114610502578063a457c2d71461050a578063a59f3e0c14610543578063a9059cbb14610560576101b9565b806370a0823114610463578063782d6fe1146104965780637ecebe00146104cf576101b9565b80633950935111610166578063587cde1e11610140578063587cde1e146103925780635c19a95c146103c557806367dfd4c9146103fa5780636fcfff4514610417576101b9565b8063395093511461030b57806343b0ff51146103445780634b3df20014610361576101b9565b806320606b701161019757806320606b70146102a257806323b872dd146102aa578063313ce567146102ed576101b9565b806306fdde03146101be578063095ea7b31461023b57806318160ddd14610288575b600080fd5b6101c6610712565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102005781810151838201526020016101e8565b50505050905090810190601f16801561022d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102746004803603604081101561025157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356107c6565b604080519115158252519081900360200190f35b6102906107e4565b60408051918252519081900360200190f35b6102906107ea565b610274600480360360608110156102c057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135909116906040013561080e565b6102f561086e565b6040805160ff9092168252519081900360200190f35b6102746004803603604081101561032157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610877565b6102906004803603602081101561035a57600080fd5b50356108d7565b6103696109b4565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b610369600480360360208110156103a857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166109d5565b6103f8600480360360208110156103db57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610a00565b005b6103f86004803603602081101561041057600080fd5b5035610a0d565b61044a6004803603602081101561042d57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610b66565b6040805163ffffffff9092168252519081900360200190f35b6102906004803603602081101561047957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610b7e565b610290600480360360408110156104ac57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610ba6565b610290600480360360208110156104e557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610e70565b6101c6610e82565b6102746004803603604081101561052057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610f01565b6103f86004803603602081101561055957600080fd5b5035610f76565b6102746004803603604081101561057657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356110e7565b610290600480360360208110156105af57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611156565b610290600480360360208110156105e257600080fd5b50356111f2565b610290600480360360208110156105ff57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166112e8565b6103f8600480360360c081101561063257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060208101359060408101359060ff6060820135169060808101359060a001356113c5565b6102906004803603604081101561068657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611704565b61029061173c565b6106f2600480360360408110156106c957600080fd5b50803573ffffffffffffffffffffffffffffffffffffffff16906020013563ffffffff16611760565b6040805163ffffffff909316835260208301919091528051918290030190f35b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107bc5780601f10610791576101008083540402835291602001916107bc565b820191906000526020600020905b81548152906001019060200180831161079f57829003601f168201915b5050505050905090565b60006107da6107d361178d565b8484611791565b5060015b92915050565b60025490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60008061081c8585856118d8565b905061082784611974565b73ffffffffffffffffffffffffffffffffffffffff808616600090815260066020526040808220548784168352912054610866929182169116856119ef565b949350505050565b60055460ff1690565b60006107da61088461178d565b846108d2856001600061089561178d565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490611bbf565b611791565b6000806108e26107e4565b90506109ad816109a7600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561097457600080fd5b505afa158015610988573d6000803e3d6000fd5b505050506040513d602081101561099e57600080fd5b50518690611c33565b90611ca6565b9392505050565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff9081166000908152600660205260409020541690565b610a0a3382611ce8565b50565b6000610a176107e4565b90506000610aab826109a7600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561097457600080fd5b9050610ab73384611daf565b600554604080517fa9059cbb00000000000000000000000000000000000000000000000000000000815233600482015260248101849052905161010090920473ffffffffffffffffffffffffffffffffffffffff169163a9059cbb916044808201926020929091908290030181600087803b158015610b3557600080fd5b505af1158015610b49573d6000803e3d6000fd5b505050506040513d6020811015610b5f57600080fd5b5050505050565b60086020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6000438210610c00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806127176026913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205463ffffffff1680610c3b5760009150506107de565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860181168552925290912054168310610d005773ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff168352929052206001015490506107de565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260076020908152604080832083805290915290205463ffffffff16831015610d485760009150506107de565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff161115610e2c57600282820363ffffffff16048103610d98612672565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610e07576020015194506107de9350505050565b805163ffffffff16871115610e1e57819350610e25565b6001820392505b5050610d6e565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b60096020526000908152604090205481565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107bc5780601f10610791576101008083540402835291602001916107bc565b60006107da610f0e61178d565b846108d28560405180606001604052806025815260200161288e6025913960016000610f3861178d565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190611df0565b600554604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600092610100900473ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b158015610fec57600080fd5b505afa158015611000573d6000803e3d6000fd5b505050506040513d602081101561101657600080fd5b5051905060006110246107e4565b9050801580611031575081155b15611045576110403384611ea1565b611063565b6000611055836109a78685611c33565b90506110613382611ea1565b505b600554604080517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101869052905161010090920473ffffffffffffffffffffffffffffffffffffffff16916323b872dd916064808201926020929091908290030181600087803b158015610b3557600080fd5b6000806110f48484611ee6565b90506110ff84611974565b6109ad6006600061110e61178d565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120548983168252600690945291909120549181169116856119ef565b73ffffffffffffffffffffffffffffffffffffffff811660009081526008602052604081205463ffffffff168061118e5760006109ad565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8601168452909152902060010154915050919050565b600080600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561127e57600080fd5b505afa158015611292573d6000803e3d6000fd5b505050506040513d60208110156112a857600080fd5b5051905060006112b66107e4565b90508015806112c3575081155b156112d0578392506112e1565b6112de826109a78684611c33565b92505b5050919050565b6000806112f483610b7e565b905060006113006107e4565b90506112de816109a7600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561139257600080fd5b505afa1580156113a6573d6000803e3d6000fd5b505050506040513d60208110156113bc57600080fd5b50518590611c33565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8666113f0610712565b805190602001206113ff611efa565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c084015273ffffffffffffffffffffffffffffffffffffffff8b1660e084015261010083018a90526101208084018a905282518085039091018152610140840183528051908501207f19010000000000000000000000000000000000000000000000000000000000006101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a905261022286018990529351929650909492939092600192610242808401937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08301929081900390910190855afa158015611578573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061273d6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526009602052604090208054600181019091558914611694576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806127f16021913960400191505060405180910390fd5b874211156116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806128366025913960400191505060405180910390fd5b6116f7818b611ce8565b505050505b505050505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b3390565b73ffffffffffffffffffffffffffffffffffffffff83166117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806128126024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611869576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806126cf6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006118e5848484611efe565b61196a846118f161178d565b6108d2856040518060600160405280602881526020016127836028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526001602052604081209061193c61178d565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190611df0565b5060019392505050565b73ffffffffffffffffffffffffffffffffffffffff81811660009081526006602052604090205416610a0a5773ffffffffffffffffffffffffffffffffffffffff16600081815260066020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a2b5750600081115b15611bba5773ffffffffffffffffffffffffffffffffffffffff831615611af75773ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604081205463ffffffff169081611a85576000611ae2565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b9050828103611af3868484846120ce565b5050505b73ffffffffffffffffffffffffffffffffffffffff821615611bba5773ffffffffffffffffffffffffffffffffffffffff821660009081526008602052604081205463ffffffff169081611b4c576000611ba9565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b90508281016116fc858484846120ce565b505050565b6000828201838110156109ad57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611c42575060006107de565b82820282848281611c4f57fe5b04146109ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806127626021913960400191505060405180910390fd5b60006109ad83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122be565b73ffffffffffffffffffffffffffffffffffffffff80831660009081526006602052604081205490911690611d1c84610b7e565b73ffffffffffffffffffffffffffffffffffffffff85811660008181526006602052604080822080547fffffffffffffffffffffffff000000000000000000000000000000000000000016898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611da98284836119ef565b50505050565b611db9828261233d565b73ffffffffffffffffffffffffffffffffffffffff808316600090815260066020526040812054611dec921690836119ef565b5050565b60008184841115611e99576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e5e578181015183820152602001611e46565b50505050905090810190601f168015611e8b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b611eab8282612487565b611eb482611974565b73ffffffffffffffffffffffffffffffffffffffff808316600090815260066020526040812054611dec9216836119ef565b60006107da611ef361178d565b8484611efe565b4690565b73ffffffffffffffffffffffffffffffffffffffff8316611f6a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806127cc6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611fd6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061268a6023913960400191505060405180910390fd5b611fe1838383611bba565b61202b816040518060600160405280602681526020016126f16026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190611df0565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822093909355908416815220546120679082611bbf565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60006120f24360405180606001604052806033815260200161285b603391396125b8565b905060008463ffffffff16118015612166575073ffffffffffffffffffffffffffffffffffffffff8516600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8901811685529252909120548282169116145b156121ce5773ffffffffffffffffffffffffffffffffffffffff8516600090815260076020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff89011684529091529020600101829055612267565b60408051808201825263ffffffff8084168252602080830186815273ffffffffffffffffffffffffffffffffffffffff8a166000818152600784528681208b861682528452868120955186549086167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000918216178755925160019687015590815260089092529390208054928801909116919092161790555b6040805184815260208101849052815173ffffffffffffffffffffffffffffffffffffffff8816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008183612327576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315611e5e578181015183820152602001611e46565b50600083858161233357fe5b0495945050505050565b73ffffffffffffffffffffffffffffffffffffffff82166123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806127ab6021913960400191505060405180910390fd5b6123b582600083611bba565b6123ff816040518060600160405280602281526020016126ad6022913973ffffffffffffffffffffffffffffffffffffffff85166000908152602081905260409020549190611df0565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020556002546124329082612630565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b73ffffffffffffffffffffffffffffffffffffffff821661250957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61251560008383611bba565b6002546125229082611bbf565b60025573ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260409020546125559082611bbf565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000816401000000008410612628576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315611e5e578181015183820152602001611e46565b509192915050565b60006109ad83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611df0565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365424f4f3a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564424f4f3a3a64656c656761746542795369673a20696e76616c6964207369676e6174757265536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373424f4f3a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373424f4f3a3a64656c656761746542795369673a207369676e61747572652065787069726564424f4f3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a8b76c0c48640c52a64c84eebc4a8f2b7cb692e977f3ee4ebb2795d3c5a1aa7b64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000841fad6eae12c286d1fd18d1d525dffa75c7effe
-----Decoded View---------------
Arg [0] : _boo (address): 0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000841fad6eae12c286d1fd18d1d525dffa75c7effe
Deployed Bytecode Sourcemap
26223:12428:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11928:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14034:169;;;;;;;;;;;;;;;;-1:-1:-1;14034:169:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;13003:100;;;:::i;:::-;;;;;;;;;;;;;;;;29869:122;;;:::i;31093:363::-;;;;;;;;;;;;;;;;-1:-1:-1;31093:363:0;;;;;;;;;;;;;;;;;;:::i;12855:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15407:218;;;;;;;;;;;;;;;;-1:-1:-1;15407:218:0;;;;;;;;;:::i;28183:220::-;;;;;;;;;;;;;;;;-1:-1:-1;28183:220:0;;:::i;26323:17::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32128:149;;;;;;;;;;;;;;;;-1:-1:-1;32128:149:0;;;;:::i;32421:104::-;;;;;;;;;;;;;;;;-1:-1:-1;32421:104:0;;;;:::i;:::-;;27387:359;;;;;;;;;;;;;;;;-1:-1:-1;27387:359:0;;:::i;29747:49::-;;;;;;;;;;;;;;;;-1:-1:-1;29747:49:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13166:119;;;;;;;;;;;;;;;;-1:-1:-1;13166:119:0;;;;:::i;34959:1252::-;;;;;;;;;;;;;;;;-1:-1:-1;34959:1252:0;;;;;;;;;:::i;30274:39::-;;;;;;;;;;;;;;;;-1:-1:-1;30274:39:0;;;;:::i;12130:87::-;;;:::i;16128:269::-;;;;;;;;;;;;;;;;-1:-1:-1;16128:269:0;;;;;;;;;:::i;26489:835::-;;;;;;;;;;;;;;;;-1:-1:-1;26489:835:0;;:::i;31464:337::-;;;;;;;;;;;;;;;;-1:-1:-1;31464:337:0;;;;;;;;;:::i;34273:255::-;;;;;;;;;;;;;;;;-1:-1:-1;34273:255:0;;;;:::i;28473:387::-;;;;;;;;;;;;;;;;-1:-1:-1;28473:387:0;;:::i;27847:267::-;;;;;;;;;;;;;;;;-1:-1:-1;27847:267:0;;;;:::i;32959:1113::-;;;;;;;;;;;;;;;;-1:-1:-1;32959:1113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;13736:151::-;;;;;;;;;;;;;;;;-1:-1:-1;13736:151:0;;;;;;;;;;;:::i;30085:117::-;;;:::i;29608:70::-;;;;;;;;;;;;;;;;-1:-1:-1;29608:70:0;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;11928:83;11998:5;11991:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11965:13;;11991:12;;11998:5;;11991:12;;11998:5;11991:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11928:83;:::o;14034:169::-;14117:4;14134:39;14143:12;:10;:12::i;:::-;14157:7;14166:6;14134:8;:39::i;:::-;-1:-1:-1;14191:4:0;14034:169;;;;;:::o;13003:100::-;13083:12;;13003:100;:::o;29869:122::-;29911:80;29869:122;:::o;31093:363::-;31205:4;31227:11;31241:45;31260:6;31268:9;31279:6;31241:18;:45::i;:::-;31227:59;;31319:25;31334:9;31319:14;:25::i;:::-;31372:18;;;;;;;;:10;:18;;;;;;;31392:21;;;;;;;;31357:65;;31372:18;;;;31392:21;31415:6;31357:14;:65::i;:::-;31442:6;31093:363;-1:-1:-1;;;;31093:363:0:o;12855:83::-;12921:9;;;;12855:83;:::o;15407:218::-;15495:4;15512:83;15521:12;:10;:12::i;:::-;15535:7;15544:50;15583:10;15544:11;:25;15556:12;:10;:12::i;:::-;15544:25;;;;;;;;;;;;;;;;;;-1:-1:-1;15544:25:0;;;:34;;;;;;;;;;;:38;:50::i;:::-;15512:8;:83::i;28183:220::-;28247:18;28278:17;28298:13;:11;:13::i;:::-;28278:33;;28335:60;28385:9;28335:45;28351:3;;;;;;;;;;;:13;;;28373:4;28351:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28351:28:0;28335:11;;:15;:45::i;:::-;:49;;:60::i;:::-;28322:73;28183:220;-1:-1:-1;;;28183:220:0:o;26323:17::-;;;;;;;;;:::o;32128:149::-;32248:21;;;;32216:7;32248:21;;;:10;:21;;;;;;;;32128:149::o;32421:104::-;32485:32;32495:10;32507:9;32485;:32::i;:::-;32421:104;:::o;27387:359::-;27485:19;27507:13;:11;:13::i;:::-;27485:35;;27590:12;27605:57;27650:11;27605:40;27616:3;;;;;;;;;;;:13;;;27638:4;27616:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27605:57;27590:72;;27673:24;27678:10;27690:6;27673:4;:24::i;:::-;27708:3;;:30;;;;;;27721:10;27708:30;;;;;;;;;;;;:3;;;;;;;:12;;:30;;;;;;;;;;;;;;;-1:-1:-1;27708:3:0;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27387:359:0:o;29747:49::-;;;;;;;;;;;;;;;:::o;13166:119::-;13259:18;;13232:7;13259:18;;;;;;;;;;;;13166:119::o;34959:1252::-;35067:7;35114:12;35100:11;:26;35092:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35204:23;;;35182:19;35204:23;;;:14;:23;;;;;;;;35242:17;35238:58;;35283:1;35276:8;;;;;35238:58;35356:20;;;;;;;:11;:20;;;;;;;;:38;35377:16;;;35356:38;;;;;;;;;:48;;:63;-1:-1:-1;35352:147:0;;35443:20;;;;;;;:11;:20;;;;;;;;35464:16;;;;;35443:38;;;;;;;;35479:1;35443:44;;;-1:-1:-1;35436:51:0;;35352:147;35560:20;;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;35556:88:0;;;35631:1;35624:8;;;;;35556:88;35656:12;35698:16;;;35725:428;35740:5;35732:13;;:5;:13;;;35725:428;;;35804:1;35787:13;;;35786:19;;;35778:27;;35847:20;;:::i;:::-;-1:-1:-1;35870:20:0;;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;35847:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35917:27;;35913:229;;;35972:8;;;;-1:-1:-1;35965:15:0;;-1:-1:-1;;;;35965:15:0;35913:229;36006:12;;:26;;;-1:-1:-1;36002:140:0;;;36061:6;36053:14;;36002:140;;;36125:1;36116:6;:10;36108:18;;36002:140;35725:428;;;;;-1:-1:-1;36170:20:0;;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;34959:1252:0;;;;:::o;30274:39::-;;;;;;;;;;;;;:::o;12130:87::-;12202:7;12195:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12169:13;;12195:14;;12202:7;;12195:14;;12202:7;12195:14;;;;;;;;;;;;;;;;;;;;;;;;16128:269;16221:4;16238:129;16247:12;:10;:12::i;:::-;16261:7;16270:96;16309:15;16270:96;;;;;;;;;;;;;;;;;:11;:25;16282:12;:10;:12::i;:::-;16270:25;;;;;;;;;;;;;;;;;;-1:-1:-1;16270:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;26489:835::-;26616:3;;:28;;;;;;26638:4;26616:28;;;;;;-1:-1:-1;;26616:3:0;;;;;;:13;;:28;;;;;;;;;;;;;;:3;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26616:28:0;;-1:-1:-1;26704:19:0;26726:13;:11;:13::i;:::-;26704:35;-1:-1:-1;26818:16:0;;;:33;;-1:-1:-1;26838:13:0;;26818:33;26814:399;;;26868:25;26873:10;26885:7;26868:4;:25::i;:::-;26814:399;;;27111:12;27126:38;27155:8;27126:24;:7;27138:11;27126;:24::i;:38::-;27111:53;;27179:22;27184:10;27196:4;27179;:22::i;:::-;26814:399;;27264:3;;:52;;;;;;27281:10;27264:52;;;;27301:4;27264:52;;;;;;;;;;;;:3;;;;;;;:16;;:52;;;;;;;;;;;;;;;-1:-1:-1;27264:3:0;:52;;;;;;;;;;31464:337;31556:4;31578:11;31592:33;31607:9;31618:6;31592:14;:33::i;:::-;31578:47;;31658:25;31673:9;31658:14;:25::i;:::-;31696:71;31711:10;:24;31722:12;:10;:12::i;:::-;31711:24;;;;;;;;;;;;;;;;;;-1:-1:-1;31711:24:0;;;;31737:21;;;;;:10;:21;;;;;;;;31711:24;;;;31737:21;31760:6;31696:14;:71::i;34273:255::-;34412:23;;;34365:7;34412:23;;;:14;:23;;;;;;;;34453:16;:67;;34519:1;34453:67;;;34472:20;;;;;;;:11;:20;;;;;;;;:38;34493:16;;;34472:38;;;;;;;;34508:1;34472:44;;34446:74;;;34273:255;;;:::o;28473:387::-;28536:19;28568:16;28587:3;;;;;;;;;;;:13;;;28609:4;28587:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28587:28:0;;-1:-1:-1;28626:17:0;28646:13;:11;:13::i;:::-;28626:33;-1:-1:-1;28674:14:0;;;:31;;-1:-1:-1;28692:13:0;;28674:31;28670:183;;;28736:10;28722:24;;28670:183;;;28802:39;28832:8;28802:25;:10;28817:9;28802:14;:25::i;:39::-;28788:53;;28670:183;28473:387;;;;;:::o;27847:267::-;27908:18;27939;27960:19;27970:8;27960:9;:19::i;:::-;27939:40;;27990:17;28010:13;:11;:13::i;:::-;27990:33;;28047:59;28096:9;28047:44;28062:3;;;;;;;;;;;:13;;;28084:4;28062:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28062:28:0;28047:10;;:14;:44::i;32959:1113::-;33078:23;29911:80;33207:6;:4;:6::i;:::-;33191:24;;;;;;33234:12;:10;:12::i;:::-;33128:165;;;;;;;;;;;;;;;;;;;;;;;;;33273:4;33128:165;;;;;;;;;;;;;;;;;;;;;;;33104:200;;;;;;30131:71;33362:140;;;;33128:165;33362:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33338:175;;;;;;33567:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33543:158;;;;;;;;;-1:-1:-1;33734:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33104:200;;-1:-1:-1;33338:175:0;;33543:158;;-1:-1:-1;;33734:26:0;;;;;;;-1:-1:-1;33734:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33734:26:0;;;;;;-1:-1:-1;;33779:23:0;;;33771:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33872:17;;;;;;;:6;:17;;;;;:19;;;;;;;;33863:28;;33855:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33967:6;33948:15;:25;;33940:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34033:31;34043:9;34054;34033;:31::i;:::-;34026:38;;;;32959:1113;;;;;;;:::o;13736:151::-;13852:18;;;;13825:7;13852:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13736:151::o;30085:117::-;30131:71;30085:117;:::o;29608:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;605:106::-;693:10;605:106;:::o;19275:346::-;19377:19;;;19369:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19456:21;;;19448:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19529:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19581:32;;;;;;;;;;;;;;;;;19275:346;;;:::o;14677:321::-;14783:4;14800:36;14810:6;14818:9;14829:6;14800:9;:36::i;:::-;14847:121;14856:6;14864:12;:10;:12::i;:::-;14878:89;14916:6;14878:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;14898:12;:10;:12::i;:::-;14878:33;;;;;;;;;;;;;-1:-1:-1;14878:33:0;;;:89;:37;:89::i;14847:121::-;-1:-1:-1;14986:4:0;14677:321;;;;;:::o;31874:170::-;31940:35;:21;;;31973:1;31940:21;;;:10;:21;;;;;;;31937:100;;31992:21;;;;;;:10;:21;;;;;:33;;;;;;;;;31874:170::o;36664:941::-;36770:6;36760:16;;:6;:16;;;;:30;;;;;36789:1;36780:6;:10;36760:30;36756:842;;;36811:20;;;;36807:382;;36919:22;;;36900:16;36919:22;;;:14;:22;;;;;;;;;36980:13;:60;;37039:1;36980:60;;;36996:19;;;;;;;:11;:19;;;;;;;;:34;37016:13;;;36996:34;;;;;;;;37028:1;36996:40;;36980:60;36960:80;-1:-1:-1;37079:18:0;;;37116:57;37133:6;37141:9;36960:80;37079:18;37116:16;:57::i;:::-;36807:382;;;;37209:20;;;;37205:382;;37317:22;;;37298:16;37317:22;;;:14;:22;;;;;;;;;37378:13;:60;;37437:1;37378:60;;;37394:19;;;;;;;:11;:19;;;;;;;;:34;37414:13;;;37394:34;;;;;;;;37426:1;37394:40;;37378:60;37358:80;-1:-1:-1;37477:18:0;;;37514:57;37531:6;37539:9;37358:80;37477:18;37514:16;:57::i;37205:382::-;36664:941;;;:::o;21585:181::-;21643:7;21675:5;;;21699:6;;;;21691:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22939:471;22997:7;23242:6;23238:47;;-1:-1:-1;23272:1:0;23265:8;;23238:47;23309:5;;;23313:1;23309;:5;:1;23333:5;;;;;:10;23325:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23886:132;23944:7;23971:39;23975:1;23978;23971:39;;;;;;;;;;;;;;;;;:3;:39::i;36219:437::-;36336:21;;;;36310:23;36336:21;;;:10;:21;;;;;;;;;;36395:20;36347:9;36395;:20::i;:::-;36470:21;;;;;;;;:10;:21;;;;;;:33;;;;;;;;;;;;;36521:54;;36368:47;;-1:-1:-1;36470:33:0;36521:54;;;;;;36470:21;36521:54;36588:60;36603:15;36620:9;36631:16;36588:14;:60::i;:::-;36219:437;;;;:::o;30707:159::-;30772:21;30778:5;30785:7;30772:5;:21::i;:::-;30819:17;;;;;;;;:10;:17;;;;;;30804:54;;30819:17;;30850:7;30804:14;:54::i;:::-;30707:159;;:::o;22488:192::-;22574:7;22610:12;22602:6;;;;22594:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;22646:5:0;;;22488:192::o;30874:211::-;30943:25;30949:9;30960:7;30943:5;:25::i;:::-;30981;30996:9;30981:14;:25::i;:::-;31046:21;;;;31042:1;31046:21;;;:10;:21;;;;;;31019:58;;31046:21;31069:7;31019:14;:58::i;13498:175::-;13584:4;13601:42;13611:12;:10;:12::i;:::-;13625:9;13636:6;13601:9;:42::i;38493:153::-;38603:9;38493:153;:::o;16887:539::-;16993:20;;;16985:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17074:23;;;17066:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17150:47;17171:6;17179:9;17190:6;17150:20;:47::i;:::-;17230:71;17252:6;17230:71;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;17210:17;;;;:9;:17;;;;;;;;;;;:91;;;;17335:20;;;;;;;:32;;17360:6;17335:24;:32::i;:::-;17312:20;;;;:9;:20;;;;;;;;;;;;:55;;;;17383:35;;;;;;;17312:20;;17383:35;;;;;;;;;;;;;16887:539;;;:::o;37613:703::-;37792:18;37813:75;37820:12;37813:75;;;;;;;;;;;;;;;;;:6;:75::i;:::-;37792:96;;37920:1;37905:12;:16;;;:85;;;;-1:-1:-1;37925:22:0;;;;;;;:11;:22;;;;;;;;:65;37948:16;;;37925:40;;;;;;;;;:50;:65;;;:50;;:65;37905:85;37901:339;;;38007:22;;;;;;;:11;:22;;;;;;;;:40;38030:16;;;38007:40;;;;;;;;38045:1;38007:46;:57;;;37901:339;;;38136:33;;;;;;;;;;;;;;;;;;;;;38097:22;;;-1:-1:-1;38097:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;38184:25;;;:14;:25;;;;;;:44;;38212:16;;;38184:44;;;;;;;;;;37901:339;38257:51;;;;;;;;;;;;;;;;;;;;;;;;;;37613:703;;;;;:::o;24514:278::-;24600:7;24635:12;24628:5;24620:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24659:9;24675:1;24671;:5;;;;;;;24514:278;-1:-1:-1;;;;;24514:278:0:o;18417:418::-;18501:21;;;18493:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18573:49;18594:7;18611:1;18615:6;18573:20;:49::i;:::-;18656:68;18679:6;18656:68;;;;;;;;;;;;;;;;;:18;;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;18635:18;;;:9;:18;;;;;;;;;;:89;18750:12;;:24;;18767:6;18750:16;:24::i;:::-;18735:12;:39;18790:37;;;;;;;;18816:1;;18790:37;;;;;;;;;;;;;18417:418;;:::o;17707:378::-;17791:21;;;17783:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17861:49;17890:1;17894:7;17903:6;17861:20;:49::i;:::-;17938:12;;:24;;17955:6;17938:16;:24::i;:::-;17923:12;:39;17994:18;;;:9;:18;;;;;;;;;;;:30;;18017:6;17994:22;:30::i;:::-;17973:18;;;:9;:18;;;;;;;;;;;:51;;;;18040:37;;;;;;;17973:18;;:9;;18040:37;;;;;;;;;;17707:378;;:::o;38324:161::-;38399:6;38437:12;38430:5;38426:9;;38418:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38475:1:0;;38324:161;-1:-1:-1;;38324:161:0:o;22049:136::-;22107:7;22134:43;22138:1;22141;22134:43;;;;;;;;;;;;;;;;;:3;:43::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://a8b76c0c48640c52a64c84eebc4a8f2b7cb692e977f3ee4ebb2795d3c5a1aa7b
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.